/* Experimental — Persona 5–inspired punk-frenzy elevate layer
   High contrast black / white / red, oblique shards, snappy morphs.
   Inspired by: https://jiaxinwen.wordpress.com/2017/04/27/the-ui-design-of-persona-5/ */

:root {
  /* Page surface + reading text (trial palette) */
  --p5-bg: #d7d7d7;
  --p5-text: #1e41b6;
  /* Chrome contrast (chips, buttons, borders) */
  --p5-black: #0a0a0a;
  --p5-white: #f5f5f5;
  --p5-red: #1e41b6;
  --p5-red-deep: #16338f;
  --p5-red-rgb: 30, 65, 182;
  --p5-cyan: #00d4c8;
  --p5-magenta: #ff2bd6;
  --p5-paper: #d7d7d7;
  --p5-ink: #1e41b6;
  --p5-ease-snap: cubic-bezier(0.16, 1, 0.3, 1);
  --p5-ease-whip: cubic-bezier(0.7, 0, 0.3, 1);
  --p5-display: "Space Grotesk", "Arial Black", Impact, system-ui, sans-serif;
  --p5-sans: "Space Grotesk", system-ui, sans-serif;
  --p5-type-xs: clamp(0.7rem, 0.65rem + 0.2vw, 0.85rem);
  --p5-type-sm: clamp(0.9rem, 0.85rem + 0.3vw, 1.05rem);
  --p5-type-md: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  --p5-type-lg: clamp(1.75rem, 1.2rem + 2vw, 3rem);
  --p5-type-xl: clamp(2.8rem, 1.6rem + 5vw, 6.5rem);
  --p5-type-2xl: clamp(3.6rem, 2rem + 7vw, 8.5rem);
  --p5-skew: -8deg;
  --p5-skew-opp: 8deg;
}

/* Hide raw Webflow until elevate boot finishes (avoids old-layout flash) */
html.dc-elevate:not([data-dc-ready]) body {
  opacity: 0 !important;
}

html.dc-elevate[data-dc-ready] body {
  opacity: 1;
  transition: opacity 0.14s ease;
}

/* ========== BASE ========== */
html.dc-elevate,
html.dc-elevate body {
  background-color: var(--p5-bg) !important;
  color: var(--p5-text);
  font-family: var(--p5-sans);
  cursor: crosshair;
  margin: 0 !important;
  padding: 0 !important;
}

/* Keep overflow off html/body — it breaks position:fixed nav flush-to-top on iOS */
html.dc-elevate #dc-spa-root {
  overflow-x: clip;
  width: 100%;
}

html.dc-elevate ::selection {
  background: var(--p5-red);
  color: var(--p5-white);
}

html.dc-elevate a,
html.dc-elevate button,
html.dc-elevate .nav-link,
html.dc-elevate .w-nav-link,
html.dc-elevate .dc-elevate-project-cta {
  cursor: pointer;
}

html.dc-elevate a:focus-visible,
html.dc-elevate button:focus-visible {
  outline: 3px solid var(--p5-cyan);
  outline-offset: 3px;
}

/* Halftone / noise grit */
html.dc-elevate::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99990;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* Diagonal streak field */
html.dc-elevate::after {
  content: "";
  position: fixed;
  inset: -20%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.07;
  background:
    repeating-linear-gradient(
      -18deg,
      transparent 0 28px,
      rgba(var(--p5-red-rgb),  0.35) 28px 30px,
      transparent 30px 72px
    );
  animation: p5StreakDrift 18s linear infinite;
}

@keyframes p5StreakDrift {
  to {
    transform: translate3d(-4%, 2%, 0);
  }
}

/* Custom cursor ring */
.dc-p5-cursor {
  position: fixed;
  width: 22px;
  height: 22px;
  border: 2px solid var(--p5-red);
  background: transparent;
  pointer-events: none;
  z-index: 2147483000;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: width 0.15s var(--p5-ease-snap), height 0.15s var(--p5-ease-snap),
    background 0.15s var(--p5-ease-snap), border-color 0.15s;
  mix-blend-mode: difference;
}

.dc-p5-cursor.is-hot {
  width: 42px;
  height: 42px;
  background: rgba(var(--p5-red-rgb),  0.35);
  border-color: var(--p5-white);
}

@media (pointer: coarse) {
  .dc-p5-cursor {
    display: none !important;
  }
}

/* ========== NAV: hide bar + toggle; keep DC mark ========== */
html.dc-elevate .dc-home-version-wrap,
html.dc-elevate .nav-menu,
html.dc-elevate .w-nav-menu,
html.dc-elevate .menu-button,
html.dc-elevate .w-nav-button,
html.dc-elevate .navbar .angled-line-button,
html.dc-elevate .navbar .text-up-button,
html.dc-elevate .navbar .div-block-28 {
  display: none !important;
}

/* Full-width transparent top banner — DC mark centered horizontally + vertically */
html.dc-elevate .navbar.w-nav,
html.dc-elevate .navbar-dark.w-nav {
  position: fixed !important;
  inset: 0 0 auto 0 !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  height: 4.25rem !important;
  min-height: 4.25rem !important;
  flex: none !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  padding: 0 1rem !important;
  margin: 0 !important;
  transform: none !important;
  -webkit-transform: none !important;
  background: rgba(215, 215, 215, 0.72) !important;
  background-color: rgba(215, 215, 215, 0.72) !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(30, 65, 182, 0.12) !important;
  box-shadow: none !important;
  backdrop-filter: blur(10px) saturate(1.1) !important;
  -webkit-backdrop-filter: blur(10px) saturate(1.1) !important;
  z-index: 1200;
  overflow: visible !important;
}

html[data-dc-experimental].dc-elevate .navbar.w-nav,
html[data-dc-experimental].dc-elevate .navbar-dark.w-nav {
  inset: 0 0 auto 0 !important;
  top: 0 !important;
  /* Keep equal vertical space so DC stays optically centered in the bar */
  height: 4.25rem !important;
  min-height: 4.25rem !important;
  padding: 0 1rem !important;
  margin: 0 !important;
  transform: none !important;
}

/* Only the DC mark participates in the flex centering */
html.dc-elevate .navbar.w-nav > :not(.link-3),
html.dc-elevate .navbar-dark.w-nav > :not(.link-3) {
  display: none !important;
}

html.dc-elevate .navbar.w-nav > .link-3,
html.dc-elevate .navbar-dark.w-nav > a.link-3 {
  display: inline-flex !important;
  align-self: center !important;
  margin: 0 !important;
}

/* Neutralize Webflow pink nav host; keep fixed navbar as the banner */
html.dc-elevate .container-8 {
  background: transparent !important;
  background-color: transparent !important;
  min-width: 0 !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
}

html.dc-elevate .navbar.w-nav::before {
  content: none !important;
  display: none !important;
}

html.dc-elevate .container-7 {
  position: static !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: visible !important;
  border: 0 !important;
}

html.dc-elevate .link-3,
html.dc-elevate a.link-3 {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 3.1rem;
  min-height: 3.1rem;
  padding: 0.45rem 0.7rem !important;
  margin: 0 !important;
  font-family: var(--p5-display) !important;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.08em !important;
  line-height: 1 !important;
  text-decoration: none !important;
  text-transform: uppercase !important;
  color: var(--p5-white) !important;
  background: var(--p5-red) !important;
  border: 3px solid var(--p5-white) !important;
  border-radius: 0 !important;
  transform: skewX(-12deg);
  box-shadow: 5px 5px 0 var(--p5-black), 8px 8px 0 var(--p5-cyan);
  transition: transform 0.15s var(--p5-ease-snap), box-shadow 0.15s var(--p5-ease-snap),
    background 0.15s, color 0.15s;
  position: relative;
  z-index: 1201;
}

html.dc-elevate .link-3:hover,
html.dc-elevate a.link-3:hover,
html.dc-elevate .link-3.w--current:hover {
  color: var(--p5-black) !important;
  background: var(--p5-white) !important;
  transform: skewX(-12deg) scale(1.08) rotate(-2deg);
  box-shadow: 7px 7px 0 var(--p5-red), 11px 11px 0 var(--p5-cyan);
}

html.dc-elevate .link-3:active {
  transform: skewX(-12deg) scale(0.96);
  box-shadow: 2px 2px 0 var(--p5-cyan);
}

/* ========== HERO ========== */
html.dc-elevate body.dc-elevate-home.dc-home-normal .wrapper,
html.dc-elevate body.dc-elevate-home.dc-home-normal .circle-button-wrap-2,
html.dc-elevate body.dc-elevate-home.dc-home-normal .c-color_copy {
  display: none !important;
}

html.dc-elevate body.dc-elevate-home.dc-home-normal .section-2 {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7rem clamp(1.25rem, 4vw, 4rem) 3.5rem;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 85% 20%, rgba(var(--p5-red-rgb),  0.22), transparent 60%),
    var(--p5-bg) !important;
}

html.dc-elevate body.dc-elevate-home .dc-p5-slash {
  position: absolute;
  background: var(--p5-red);
  pointer-events: none;
  z-index: 0;
}

html.dc-elevate body.dc-elevate-home .dc-p5-slash--1 {
  width: 140%;
  height: 18px;
  top: 18%;
  left: -20%;
  transform: rotate(-12deg);
  animation: p5SlashIn 0.7s var(--p5-ease-whip) both;
}

html.dc-elevate body.dc-elevate-home .dc-p5-slash--2 {
  width: 90%;
  height: 8px;
  top: 28%;
  right: -10%;
  background: var(--p5-text);
  transform: rotate(8deg);
  animation: p5SlashIn 0.85s 0.08s var(--p5-ease-whip) both;
}

html.dc-elevate body.dc-elevate-home .dc-p5-slash--3 {
  display: none !important;
}

@keyframes p5SlashIn {
  from {
    transform: translateX(-40%) rotate(-12deg) scaleX(0.2);
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

html.dc-elevate body.dc-elevate-home .dc-elevate-hero-visual {
  position: absolute;
  right: clamp(-1rem, 2vw, 3rem);
  top: 14%;
  width: min(46vw, 540px);
  aspect-ratio: 1;
  z-index: 1;
  pointer-events: none;
  filter: contrast(1.15) saturate(0.2);
  mix-blend-mode: screen;
  animation: p5Spin 22s linear infinite;
}

html.dc-elevate body.dc-elevate-home .dc-elevate-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: invert(1) drop-shadow(0 0 0 var(--p5-red));
}

@keyframes p5Spin {
  to {
    transform: rotate(360deg);
  }
}

html.dc-elevate body.dc-elevate-home .hero-header-div-bp2,
html.dc-elevate body.dc-elevate-home .div-block-143 {
  position: relative;
  z-index: 2;
  max-width: 58rem;
}

html.dc-elevate body.dc-elevate-home .heading-11 {
  font-family: var(--p5-display) !important;
  font-size: var(--p5-type-2xl) !important;
  font-weight: 800 !important;
  line-height: 0.88 !important;
  letter-spacing: -0.03em !important;
  color: var(--p5-text) !important;
  text-transform: uppercase;
  transform: skewX(-8deg);
  margin: 0 0 1.5rem !important;
  text-shadow: 3px 3px 0 #ffffff, 6px 6px 0 #ffffff;
  max-width: 14ch;
}

/* Persona reverse-letter tiles inside titles */
html.dc-elevate .dc-p5-word {
  display: inline-block;
  white-space: nowrap;
  max-width: 100%;
}

html.dc-elevate .dc-p5-letter {
  display: inline-block;
  padding: 0 0.08em;
}

html.dc-elevate .dc-p5-letter--flash {
  background: var(--p5-red);
  color: var(--p5-white);
  padding: 0 0.12em;
  transform: skewX(-6deg) scale(1.05);
  /* Keep H extrusion blue while the rest of the hero title uses white stacks */
  text-shadow: 3px 3px 0 var(--p5-red), 6px 6px 0 var(--p5-red) !important;
  box-shadow: 3px 3px 0 var(--p5-white);
}

html.dc-elevate body.dc-elevate-home #selected-works .heading-xlarge,
html.dc-elevate body.dc-elevate-home .heading-11,
html.dc-elevate body.dc-elevate-case .heading-7,
html.dc-elevate .dc-elevate-closer__title,
html.dc-elevate body.dc-elevate-home .dc-elevate-project-title {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

html.dc-elevate body.dc-elevate-home .animate-div,
html.dc-elevate body.dc-elevate-home .animate-div-bp3 {
  display: none !important;
}

html.dc-elevate body.dc-elevate-home .text-block-50.body-title {
  display: inline-block;
  font-family: var(--p5-display) !important;
  font-size: var(--p5-type-xs) !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--p5-black) !important;
  background: var(--p5-cyan);
  padding: 0.4rem 0.75rem;
  transform: skewX(-10deg);
  margin-bottom: 1rem !important;
  box-shadow: 4px 4px 0 var(--p5-red);
}

/* Hero discipline chip relocated to project filters above Immer */
html.dc-elevate body.dc-elevate-home .section-2 .text-block-50.body-title.dc-hero-title-hidden {
  display: none !important;
}

/* ========== HOME DISCIPLINE FILTERS (above green line / Immer) ========== */
html.dc-elevate body.dc-elevate-home .dc-home-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  padding: 2.25rem clamp(1.25rem, 4vw, 4rem) 1.35rem;
  margin: 0;
  position: relative;
  z-index: 2;
}

html.dc-elevate body.dc-elevate-home .dc-home-filter {
  appearance: none;
  -webkit-appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--p5-display) !important;
  font-size: var(--p5-type-xs) !important;
  font-weight: 700 !important;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--p5-black) !important;
  background: var(--p5-cyan);
  padding: 0.4rem 0.75rem;
  margin: 0;
  border: 0;
  border-radius: 0;
  transform: skewX(-10deg);
  box-shadow: 4px 4px 0 var(--p5-red);
  cursor: pointer;
  transition: transform 0.15s var(--p5-ease-snap), box-shadow 0.15s, background 0.15s,
    color 0.15s;
}

html.dc-elevate body.dc-elevate-home .dc-home-filter:hover {
  transform: skewX(-10deg) scale(1.04);
  box-shadow: 6px 6px 0 var(--p5-white);
}

html.dc-elevate body.dc-elevate-home .dc-home-filter.is-active {
  background: var(--p5-white);
  color: var(--p5-black) !important;
  box-shadow: 4px 4px 0 var(--p5-cyan);
}

html.dc-elevate body.dc-elevate-home .dc-home-filter:focus-visible {
  outline: 3px solid var(--p5-white);
  outline-offset: 3px;
}

html.dc-elevate body.dc-elevate-home [id="Immer"].dc-home-filter-hidden,
html.dc-elevate body.dc-elevate-home [id="X"].dc-home-filter-hidden,
html.dc-elevate body.dc-elevate-home [id="Rico"].dc-home-filter-hidden,
html.dc-elevate body.dc-elevate-home [id="Bounce"].dc-home-filter-hidden,
html.dc-elevate body.dc-elevate-home [id="Swol"].dc-home-filter-hidden,
html.dc-elevate body.dc-elevate-home [id="Pilot"].dc-home-filter-hidden,
html.dc-elevate body.dc-elevate-home [id="Samsung"].dc-home-filter-hidden,
html.dc-elevate body.dc-elevate-home [id="LG"].dc-home-filter-hidden,
html.dc-elevate body.dc-elevate-home [id="Play"].dc-home-filter-hidden {
  display: none !important;
}

html.dc-elevate body.dc-elevate-home .text-block-bp1 {
  font-size: var(--p5-type-md) !important;
  line-height: 1.5 !important;
  color: rgba(30, 65, 182, 0.82) !important;
  max-width: 34rem;
  border-left: 4px solid var(--p5-red);
  padding-left: 1rem;
}

html.dc-elevate body.dc-elevate-home .home-scroll-arrow {
  display: none !important;
}

html.dc-elevate body.dc-elevate-home .home-scroll-arrow:hover {
  color: var(--p5-red);
}

/* ========== SELECTED WORKS ========== */
html.dc-elevate body.dc-elevate-home #selected-works {
  padding: 2rem clamp(1.25rem, 4vw, 4rem) 1.5rem;
  border-top: 0;
  position: relative;
  scroll-margin-top: 5rem;
}

html.dc-elevate body.dc-elevate-home #selected-works::before {
  content: none !important;
  display: none !important;
}

/* Drop Selected Works masthead — projects start immediately */
html.dc-elevate body.dc-elevate-home #selected-works > div:has(.heading-xlarge),
html.dc-elevate body.dc-elevate-home #selected-works .heading-xlarge,
html.dc-elevate body.dc-elevate-home #selected-works .dc-elevate-section-kicker {
  display: none !important;
}

html.dc-elevate body.dc-elevate-home #selected-works .lottie-animation,
html.dc-elevate body.dc-elevate-home #selected-works .div-block-108,
html.dc-elevate body.dc-elevate-home #selected-works .categories,
html.dc-elevate body.dc-elevate-home #selected-works .w-layout-grid,
html.dc-elevate body.dc-elevate-home #selected-works .content.mod--categories,
html.dc-elevate body.dc-elevate-home #selected-works .line-gorizon {
  display: none !important;
}

/* ========== PROJECT ROWS ========== */
html.dc-elevate body.dc-elevate-home [id="Immer"],
html.dc-elevate body.dc-elevate-home [id="X"],
html.dc-elevate body.dc-elevate-home [id="Rico"],
html.dc-elevate body.dc-elevate-home [id="Bounce"],
html.dc-elevate body.dc-elevate-home [id="Swol"],
html.dc-elevate body.dc-elevate-home [id="Pilot"],
html.dc-elevate body.dc-elevate-home [id="Samsung"],
html.dc-elevate body.dc-elevate-home [id="LG"],
html.dc-elevate body.dc-elevate-home [id="Play"] {
  display: block !important;
  margin: 0;
  padding: 3.5rem clamp(1.25rem, 4vw, 4rem);
  border-top: 0;
  background: transparent !important;
  position: relative;
  scroll-margin-top: 5rem;
}

html.dc-elevate body.dc-elevate-home [id="Pilot"]::before,
html.dc-elevate body.dc-elevate-home [id="Bounce"]::before,
html.dc-elevate body.dc-elevate-home [id="LG"]::before,
html.dc-elevate body.dc-elevate-home [id="Rico"]::before,
html.dc-elevate body.dc-elevate-home [id="Swol"]::before,
html.dc-elevate body.dc-elevate-home [id="Samsung"]::before,
html.dc-elevate body.dc-elevate-home [id="Immer"]::before,
html.dc-elevate body.dc-elevate-home [id="X"]::before,
html.dc-elevate body.dc-elevate-home [id="Play"]::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--p5-red), transparent 70%);
  transform: skewX(-20deg);
}

html.dc-elevate body.dc-elevate-home .dc-elevate-shell {
  display: grid !important;
  visibility: visible !important;
  opacity: 1;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  max-width: 74rem;
  position: relative;
  width: 100%;
}

html.dc-elevate body.dc-elevate-home .dc-elevate-project-copy {
  min-width: 0;
  max-width: 100%;
  container-type: inline-size;
  container-name: project-copy;
}

html.dc-elevate body.dc-elevate-home .dc-elevate-shell ~ *,
html.dc-elevate body.dc-elevate-home [id="Immer"] > :not(.dc-elevate-shell),
html.dc-elevate body.dc-elevate-home [id="X"] > :not(.dc-elevate-shell),
html.dc-elevate body.dc-elevate-home [id="Rico"] > :not(.dc-elevate-shell),
html.dc-elevate body.dc-elevate-home [id="Bounce"] > :not(.dc-elevate-shell),
html.dc-elevate body.dc-elevate-home [id="Swol"] > :not(.dc-elevate-shell),
html.dc-elevate body.dc-elevate-home [id="Pilot"] > :not(.dc-elevate-shell),
html.dc-elevate body.dc-elevate-home [id="Samsung"] > :not(.dc-elevate-shell),
html.dc-elevate body.dc-elevate-home [id="LG"] > :not(.dc-elevate-shell),
html.dc-elevate body.dc-elevate-home [id="Play"] > :not(.dc-elevate-shell) {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}

html.dc-elevate body.dc-elevate-home .dc-elevate-project-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.15rem 1rem;
  margin-bottom: 1rem;
}

html.dc-elevate body.dc-elevate-home .dc-elevate-project-num {
  display: inline-block;
  font-family: var(--p5-display);
  font-size: clamp(1.6rem, 10cqi, 3.25rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  text-decoration: none !important;
  color: var(--p5-white) !important;
  background: var(--p5-red);
  padding: 0.22em 0.42em;
  transform: skewX(-10deg);
  text-shadow: none;
  box-shadow: 4px 4px 0 var(--p5-white), 7px 7px 0 var(--p5-cyan);
  order: 0;
  max-width: 100%;
  margin-bottom: 0.35rem;
}

html.dc-elevate body.dc-elevate-home .dc-elevate-project-title {
  display: none !important;
}

html.dc-elevate body.dc-elevate-home .dc-elevate-project-title .dc-p5-word {
  max-width: 100%;
  white-space: nowrap;
}

html.dc-elevate body.dc-elevate-home .dc-elevate-project-title a {
  display: inline-block;
  max-width: 100%;
  color: inherit;
  text-decoration: none;
  transition: color 0.12s var(--p5-ease-snap);
}

html.dc-elevate body.dc-elevate-home .dc-elevate-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  width: 100%;
  order: 2;
}

html.dc-elevate body.dc-elevate-home .dc-elevate-project-title a:hover {
  color: var(--p5-red);
}

html.dc-elevate body.dc-elevate-home .dc-elevate-chip {
  font-size: var(--p5-type-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.35rem 0.65rem;
  border: 2px solid var(--p5-text);
  border-radius: 0;
  color: var(--p5-text);
  background: transparent;
  transform: skewX(-10deg);
  transition: background 0.12s, color 0.12s, transform 0.12s var(--p5-ease-snap);
}

html.dc-elevate body.dc-elevate-home .dc-elevate-chip:hover {
  background: var(--p5-text);
  color: var(--p5-bg);
  transform: skewX(-10deg) scale(1.05);
}

html.dc-elevate body.dc-elevate-home .dc-elevate-chip--lock {
  border-color: var(--p5-red);
  color: var(--p5-red);
  background: rgba(var(--p5-red-rgb),  0.12);
}

html.dc-elevate body.dc-elevate-home .dc-elevate-project-blurb {
  font-size: var(--p5-type-md);
  line-height: 1.45;
  color: rgba(30, 65, 182, 0.78);
  max-width: 34rem;
  margin: 0 0 1.25rem;
}

html.dc-elevate body.dc-elevate-home .dc-elevate-project-media {
  position: relative;
  width: 100%;
  max-width: 72rem;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #1a1a1a;
  border: 3px solid var(--p5-white);
  isolation: isolate;
  clip-path: polygon(0 0, 100% 0, 100% 86%, 96% 100%, 0 100%);
  box-shadow: 10px 10px 0 var(--p5-red);
  transition: transform 0.25s var(--p5-ease-snap), box-shadow 0.25s var(--p5-ease-snap),
    clip-path 0.25s var(--p5-ease-snap);
}

html.dc-elevate body.dc-elevate-home .dc-elevate-project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(var(--p5-red-rgb),  0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.45s var(--p5-ease-whip);
  pointer-events: none;
  z-index: 2;
}

html.dc-elevate body.dc-elevate-home .dc-elevate-shell:hover .dc-elevate-project-media {
  transform: skewX(-2deg) translateY(-4px);
  box-shadow: 14px 14px 0 var(--p5-cyan);
  clip-path: polygon(0 4%, 100% 0, 100% 92%, 94% 100%, 0 100%);
}

html.dc-elevate body.dc-elevate-home .dc-elevate-shell:hover .dc-elevate-project-media::after {
  transform: translateX(120%);
}

html.dc-elevate body.dc-elevate-home .dc-elevate-project-media img,
html.dc-elevate body.dc-elevate-home .dc-elevate-project-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s var(--p5-ease-snap), filter 0.25s;
  filter: contrast(1.05);
}

html.dc-elevate body.dc-elevate-home .dc-elevate-shell:hover .dc-elevate-project-media img,
html.dc-elevate body.dc-elevate-home .dc-elevate-shell:hover .dc-elevate-project-media video {
  transform: scale(1.08) rotate(-0.5deg);
  filter: contrast(1.15) saturate(1.1);
}

html.dc-elevate body.dc-elevate-home .dc-elevate-project-media a {
  display: block;
  width: 100%;
  height: 100%;
}

html.dc-elevate body.dc-elevate-home .dc-elevate-project-cta {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: var(--p5-type-sm);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--p5-black);
  text-decoration: none;
  background: var(--p5-white);
  border: 3px solid var(--p5-white);
  padding: 0.7rem 1.1rem;
  transform: skewX(-12deg);
  box-shadow: 5px 5px 0 var(--p5-red);
  transition: transform 0.15s var(--p5-ease-snap), background 0.15s, color 0.15s,
    box-shadow 0.15s;
}

html.dc-elevate body.dc-elevate-home .dc-elevate-project-cta:hover {
  background: var(--p5-red);
  color: var(--p5-white);
  border-color: var(--p5-red);
  transform: skewX(-12deg) scale(1.06) translateX(4px);
  box-shadow: 8px 8px 0 var(--p5-white);
}

html.dc-elevate body.dc-elevate-home .dc-elevate-project-cta:active {
  transform: skewX(-12deg) scale(0.97);
  box-shadow: 2px 2px 0 var(--p5-white);
}

/* ========== MIX / CLOSER ========== */
html.dc-elevate body.dc-elevate-home .section-8 {
  padding: 4rem clamp(1.25rem, 4vw, 4rem);
  border-top: 3px solid var(--p5-red);
  color: var(--p5-white);
}

html.dc-elevate body.dc-elevate-home .link.mod--categories {
  border: 2px solid var(--p5-white) !important;
  border-radius: 0 !important;
  padding: 0.45rem 0.9rem !important;
  font-size: var(--p5-type-xs) !important;
  letter-spacing: 0.1em;
  font-weight: 700 !important;
  color: var(--p5-white) !important;
  transform: skewX(-10deg);
  transition: background 0.12s, color 0.12s, transform 0.12s var(--p5-ease-snap);
}

html.dc-elevate body.dc-elevate-home .link.mod--categories:hover,
html.dc-elevate body.dc-elevate-home .mixitup-control-active {
  background: var(--p5-red) !important;
  color: var(--p5-white) !important;
  border-color: var(--p5-red) !important;
  transform: skewX(-10deg) scale(1.06);
}

.dc-elevate-closer {
  padding: 5.5rem clamp(1.25rem, 4vw, 4rem);
  background:
    linear-gradient(135deg, rgba(var(--p5-red-rgb),  0.25), transparent 50%),
    var(--p5-black);
  border-top: 0;
  position: relative;
  overflow: hidden;
}

.dc-elevate-closer::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -5%;
  width: 45%;
  height: 70%;
  background: var(--p5-red);
  clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
  opacity: 0.35;
  transform: skewX(-8deg);
  pointer-events: none;
}

.dc-elevate-closer__kicker {
  display: inline-block;
  font-size: var(--p5-type-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--p5-black);
  background: var(--p5-cyan);
  padding: 0.35rem 0.7rem;
  transform: skewX(-12deg);
  margin-bottom: 1rem;
  box-shadow: 4px 4px 0 var(--p5-white);
}

.dc-elevate-closer__title {
  font-family: var(--p5-display);
  font-size: var(--p5-type-xl);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  max-width: 14ch;
  margin: 0 0 1.25rem;
  color: var(--p5-white);
  transform: skewX(-8deg);
  text-shadow: 3px 3px 0 var(--p5-red);
  position: relative;
  z-index: 1;
}

.dc-elevate-closer__lede {
  font-size: var(--p5-type-md);
  line-height: 1.5;
  color: rgba(245, 245, 245, 0.8);
  max-width: 38rem;
  margin: 0 0 2rem;
  position: relative;
  z-index: 1;
}

.dc-elevate-closer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.dc-elevate-closer__actions a {
  font-size: var(--p5-type-sm);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--p5-black);
  background: var(--p5-white);
  border: 3px solid var(--p5-white);
  padding: 0.65rem 0.95rem;
  transform: skewX(-12deg);
  box-shadow: 4px 4px 0 var(--p5-red);
  transition: transform 0.15s var(--p5-ease-snap), background 0.15s, color 0.15s,
    box-shadow 0.15s;
}

.dc-elevate-closer__actions a:hover {
  background: var(--p5-red);
  color: var(--p5-white);
  border-color: var(--p5-red);
  transform: skewX(-12deg) scale(1.06) rotate(-1deg);
  box-shadow: 7px 7px 0 var(--p5-cyan);
}

.dc-elevate-closer__portrait {
  margin-top: 2rem;
  max-width: 260px;
  border: 3px solid var(--p5-white);
  box-shadow: 10px 10px 0 var(--p5-red);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 88% 100%, 0 100%);
  position: relative;
  z-index: 1;
  transition: transform 0.25s var(--p5-ease-snap), box-shadow 0.25s;
}

.dc-elevate-closer__portrait:hover {
  transform: skewX(-3deg) rotate(-1deg);
  box-shadow: 14px 14px 0 var(--p5-cyan);
}

.dc-elevate-closer__portrait img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2);
  transition: filter 0.25s;
}

.dc-elevate-closer__portrait:hover img {
  filter: grayscale(0) contrast(1.1);
}

/* ========== REVEALS ========== */
.dc-elevate-reveal {
  opacity: 0;
  transform: translateX(-28px) skewX(-6deg);
  transition: opacity 0.55s var(--p5-ease-snap), transform 0.55s var(--p5-ease-snap);
}

.dc-elevate-reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .dc-elevate-reveal,
  html.dc-elevate::after,
  html.dc-elevate body.dc-elevate-home .dc-elevate-hero-visual,
  html.dc-elevate body.dc-elevate-home .dc-p5-slash--1,
  html.dc-elevate body.dc-elevate-home .dc-p5-slash--2 {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ========== CASE STUDIES ========== */
html.dc-elevate:has(body.dc-elevate-case) {
  background: var(--p5-bg) !important;
}


html.dc-elevate body.dc-elevate-case,
html.dc-elevate body.dc-elevate-case.body-3,
html.dc-elevate body.dc-elevate-case.body {
  background: var(--p5-bg) !important;
  color: var(--p5-text) !important;
}

html.dc-elevate body.dc-elevate-case .all-content-white,
html.dc-elevate body.dc-elevate-case .all-content,
html.dc-elevate body.dc-elevate-case .overview-white-div,
html.dc-elevate body.dc-elevate-case .overview-white-div-copy,
html.dc-elevate body.dc-elevate-case .section-header-black-div,
html.dc-elevate body.dc-elevate-case .section-4,
html.dc-elevate body.dc-elevate-case .w-layout-blockcontainer,
html.dc-elevate body.dc-elevate-case .ig-slider,
html.dc-elevate body.dc-elevate-case .ig-slider-story,
html.dc-elevate body.dc-elevate-case .quads,
html.dc-elevate body.dc-elevate-case .w-slider,
html.dc-elevate body.dc-elevate-case .w-slide,
html.dc-elevate body.dc-elevate-case [class*="slide-"] {
  background: transparent !important;
  background-color: transparent !important;
  color: var(--p5-text) !important;
}

/* LG / gallery hosts that Webflow forces white */
html.dc-elevate body.dc-elevate-case .overview-white-div-copy,
html.dc-elevate body.dc-elevate-case .footer-box-white {
  background: var(--p5-bg) !important;
  background-color: var(--p5-bg) !important;
}

/* Force Webflow text → trial blue on light gray */
html.dc-elevate body.dc-elevate-case,
html.dc-elevate body.dc-elevate-case p,
html.dc-elevate body.dc-elevate-case li,
html.dc-elevate body.dc-elevate-case span,
html.dc-elevate body.dc-elevate-case strong,
html.dc-elevate body.dc-elevate-case em,
html.dc-elevate body.dc-elevate-case b,
html.dc-elevate body.dc-elevate-case label,
html.dc-elevate body.dc-elevate-case h1,
html.dc-elevate body.dc-elevate-case h2,
html.dc-elevate body.dc-elevate-case h3,
html.dc-elevate body.dc-elevate-case h4,
html.dc-elevate body.dc-elevate-case h5,
html.dc-elevate body.dc-elevate-case h6,
html.dc-elevate body.dc-elevate-case .text-block-55,
html.dc-elevate body.dc-elevate-case .text-block-55-new-black,
html.dc-elevate body.dc-elevate-case .text-block-56,
html.dc-elevate body.dc-elevate-case .text-block-56-new-black,
html.dc-elevate body.dc-elevate-case .text-block-48,
html.dc-elevate body.dc-elevate-case .text-block-49,
html.dc-elevate body.dc-elevate-case .text-block-50,
html.dc-elevate body.dc-elevate-case .text-block-bp1,
html.dc-elevate body.dc-elevate-case .text-block-37,
html.dc-elevate body.dc-elevate-case .text-block-38,
html.dc-elevate body.dc-elevate-case .text-block-39,
html.dc-elevate body.dc-elevate-case .text-block-40,
html.dc-elevate body.dc-elevate-case .text-block-41,
html.dc-elevate body.dc-elevate-case .text-block-42,
html.dc-elevate body.dc-elevate-case .text-block-research,
html.dc-elevate body.dc-elevate-case .text-block-research-white,
html.dc-elevate body.dc-elevate-case .text-block-new-black,
html.dc-elevate body.dc-elevate-case .text-block-pfp,
html.dc-elevate body.dc-elevate-case .text-block-55-mobile,
html.dc-elevate body.dc-elevate-case .heading-7,
html.dc-elevate body.dc-elevate-case .heading-8,
html.dc-elevate body.dc-elevate-case .heading-8-new-black,
html.dc-elevate body.dc-elevate-case .heading-9,
html.dc-elevate body.dc-elevate-case .heading-9-white,
html.dc-elevate body.dc-elevate-case .heading-9-white-badge,
html.dc-elevate body.dc-elevate-case .heading-11,
html.dc-elevate body.dc-elevate-case .section-header-body-copy,
html.dc-elevate body.dc-elevate-case .quotes-body-copy,
html.dc-elevate body.dc-elevate-case .quotes-copy,
html.dc-elevate body.dc-elevate-case .quotes-copy-copy,
html.dc-elevate body.dc-elevate-case .quotes-header,
html.dc-elevate body.dc-elevate-case .quote-header,
html.dc-elevate body.dc-elevate-case .quote-header-pfp,
html.dc-elevate body.dc-elevate-case .quotes-unspoken,
html.dc-elevate body.dc-elevate-case .details,
html.dc-elevate body.dc-elevate-case .details-problem,
html.dc-elevate body.dc-elevate-case .role,
html.dc-elevate body.dc-elevate-case .team,
html.dc-elevate body.dc-elevate-case .tools,
html.dc-elevate body.dc-elevate-case .timeline,
html.dc-elevate body.dc-elevate-case .w-richtext,
html.dc-elevate body.dc-elevate-case .w-richtext p,
html.dc-elevate body.dc-elevate-case [class*="text-block"],
html.dc-elevate body.dc-elevate-case [class*="new-black"] {
  color: var(--p5-text) !important;
}

/* Cyan chips keep black type for contrast */
html.dc-elevate body.dc-elevate-case .text-block-57,
html.dc-elevate body.dc-elevate-case .dc-case-nav__kicker,
html.dc-elevate body.dc-elevate-case .dc-elevate-section-kicker,
html.dc-elevate body.dc-elevate-play .dc-case-nav__kicker {
  color: var(--p5-black) !important;
}

/* Arc labels sit on blue fill — white type only */
html.dc-elevate body.dc-elevate-case .dc-arc-label,
html.dc-elevate body.dc-elevate-case .dc-arc-label__num,
html.dc-elevate body.dc-elevate-case .dc-arc-label__text,
html.dc-elevate .dc-arc-label,
html.dc-elevate .dc-arc-label__text {
  color: #ffffff !important;
}

/* White pager buttons keep black type */
html.dc-elevate body.dc-elevate-case .dc-case-nav__pager a,
html.dc-elevate body.dc-elevate-play .dc-case-nav__pager a {
  color: var(--p5-black) !important;
}

/* Samsung final product band — white type on black only */
html.dc-elevate body.dc-elevate-case .final-product-black-bg,
html.dc-elevate body.dc-elevate-case .final-section-black-bg,
html.dc-elevate body.dc-elevate-case .final-product-black-bg .quote-header-highlights,
html.dc-elevate body.dc-elevate-case .final-product-black-bg .text-block-highlights,
html.dc-elevate body.dc-elevate-case .final-product-black-bg .quotes-header,
html.dc-elevate body.dc-elevate-case .final-product-black-bg .quotes-body-copy,
html.dc-elevate body.dc-elevate-case .final-product-black-bg h3,
html.dc-elevate body.dc-elevate-case .final-product-black-bg [class*="text-block"] {
  color: #ffffff !important;
}

/* Highlights (Move Freely, During Sleep, etc.) — blue on light bg */
html.dc-elevate body.dc-elevate-case .highlights .quote-header-highlights,
html.dc-elevate body.dc-elevate-case .highlights .text-block-highlights,
html.dc-elevate body.dc-elevate-case .highlights .quotes-header,
html.dc-elevate body.dc-elevate-case .highlights .quotes-body-copy {
  color: #1e41b6 !important;
}

html.dc-elevate body.dc-elevate-case .dc-case-nav__pager a:hover,
html.dc-elevate body.dc-elevate-play .dc-case-nav__pager a:hover {
  color: var(--p5-white) !important;
}

html.dc-elevate body.dc-elevate-case a.link-3,
html.dc-elevate body.dc-elevate-case .link-3 {
  color: var(--p5-white) !important;
}

/*
  Typographic PNG banners (black ink on transparent):
  invert so ink reads white. Do NOT invert assets that were pixel-whitened.
*/
/* Hide Pilot “untapped market” banner */
html.dc-elevate body.dc-elevate-case img[src*="untapped"],
html.dc-elevate body.dc-elevate-case .div-block-36:has(img[src*="untapped"]) {
  display: none !important;
}

html.dc-elevate body.dc-elevate-case img.dc-text-ink,
html.dc-elevate body.dc-elevate-case img[src*="streamline-quote"],
html.dc-elevate body.dc-elevate-case img[src*="Streamlined"],
html.dc-elevate body.dc-elevate-case img[src*="conceptualize-quote"],
html.dc-elevate body.dc-elevate-case img[src*="work-around-quotes"],
html.dc-elevate body.dc-elevate-case img[src*="Pilots-mission"],
html.dc-elevate body.dc-elevate-case img[src*="plus-divider"] {
  filter: invert(1) brightness(1.05) contrast(1.08) !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

html.dc-elevate body.dc-elevate-case img[src*="spectrum-p5"],
html.dc-elevate body.dc-elevate-case img.dc-spectrum-p5 {
  filter: none !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  display: block;
  width: 100%;
  height: auto;
}

/* Pilot usability board — blue field, white type, cyan accents */
html.dc-elevate body.dc-elevate-case .div-block-56:has(img[src*="7-rounds"]) {
  background: var(--p5-red) !important;
  border: 3px solid var(--p5-white);
  box-shadow: 8px 8px 0 var(--p5-cyan);
  padding: 1.25rem clamp(1rem, 3vw, 1.75rem);
  margin-left: auto;
  margin-right: auto;
}

/* Insights board — keep original artwork (p5 recolor was too hard to read) */
html.dc-elevate body.dc-elevate-case .div-block-20:has(img[src*="LB-insights-quotes"]) {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0;
}

html.dc-elevate body.dc-elevate-case img[src*="LB-insights-quotes"]:not([src*="p5"]) {
  filter: none !important;
  border: 3px solid var(--p5-white) !important;
  box-shadow: 8px 8px 0 var(--p5-cyan);
  background: transparent !important;
  display: block;
  width: 100%;
  height: auto;
}

html.dc-elevate body.dc-elevate-case img[src*="7-rounds-p5"],
html.dc-elevate body.dc-elevate-case img[src*="LB-insights-quotes-p5"],
html.dc-elevate body.dc-elevate-case img.dc-pilot-blue-ink {
  filter: none !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  display: block;
  width: 100%;
  height: auto;
}

/* Diverse-range sentence — real HTML (replaces dark PNG) */
html.dc-elevate body.dc-elevate-case .dc-case-diverse {
  margin: 2rem clamp(1.25rem, 4vw, 4rem);
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

html.dc-elevate body.dc-elevate-case .dc-case-diverse p {
  font-size: clamp(1.15rem, 0.9rem + 1.2vw, 1.65rem) !important;
  line-height: 1.45 !important;
  color: #1e41b6 !important;
  margin: 0 !important;
}

html.dc-elevate body.dc-elevate-case .dc-case-diverse__pill {
  display: inline-block;
  color: #1e41b6 !important;
  background: var(--p5-white);
  border: 2px solid var(--p5-white);
  box-shadow: 4px 4px 0 var(--p5-red);
  padding: 0.15rem 0.55rem;
  transform: skewX(-8deg);
  font-weight: 700;
}

/* Rebuilt Pilot narrative beats — real white HTML, not baked PNG ink */
html.dc-elevate body.dc-elevate-case .dc-case-split {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  margin: 2.5rem clamp(1.25rem, 4vw, 4rem);
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 900px) {
  html.dc-elevate body.dc-elevate-case .dc-case-split--left,
  html.dc-elevate body.dc-elevate-case .dc-case-split--right {
    grid-template-columns: 1.05fr 0.95fr;
  }

  html.dc-elevate body.dc-elevate-case .dc-case-split--bottom {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

html.dc-elevate body.dc-elevate-case .dc-case-split__media {
  overflow: hidden;
  border: 3px solid var(--p5-white);
  box-shadow: 8px 8px 0 var(--p5-red);
  background: #050505;
}

html.dc-elevate body.dc-elevate-case .dc-case-split--left .dc-case-split__media img {
  width: 200%;
  max-width: none !important;
  transform: translateX(0);
  display: block;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

html.dc-elevate body.dc-elevate-case .dc-case-split--right .dc-case-split__media img {
  width: 200%;
  max-width: none !important;
  transform: translateX(-50%);
  display: block;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

html.dc-elevate body.dc-elevate-case .dc-case-split--bottom .dc-case-split__media img {
  width: 140%;
  max-width: none !important;
  margin-left: -20%;
  margin-top: -42%;
  display: block;
  border: 0 !important;
  box-shadow: none !important;
  filter: none !important;
}

html.dc-elevate body.dc-elevate-case .dc-case-split--bottom .dc-case-split__media {
  max-height: 70vh;
}

html.dc-elevate body.dc-elevate-case .dc-case-split__copy {
  color: var(--p5-white) !important;
  padding: 0.5rem 0.25rem;
}

html.dc-elevate body.dc-elevate-case .dc-case-split__title {
  font-family: var(--p5-display) !important;
  font-size: clamp(2rem, 1.2rem + 3vw, 3.5rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  text-transform: uppercase !important;
  color: var(--p5-white) !important;
  margin: 0 0 1rem !important;
  transform: skewX(-8deg);
  text-shadow: 3px 3px 0 var(--p5-red);
}

html.dc-elevate body.dc-elevate-case .dc-case-split__body {
  font-size: var(--p5-type-md) !important;
  line-height: 1.55 !important;
  color: #1e41b6 !important;
}

html.dc-elevate body.dc-elevate-case .dc-case-split-hidden {
  display: none !important;
}

html.dc-elevate body.dc-elevate-case .dc-case-impact {
  margin: 2.5rem clamp(1.25rem, 4vw, 4rem);
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--p5-text) !important;
}

html.dc-elevate body.dc-elevate-case .dc-case-impact__lead {
  display: inline-block;
  font-style: italic;
  color: #ffffff !important;
  background: var(--p5-red);
  padding: 0.85rem 1.1rem;
  border: 3px solid var(--p5-white);
  box-shadow: 6px 6px 0 var(--p5-cyan);
  transform: skewX(-4deg);
  margin: 0 0 1.5rem !important;
}

html.dc-elevate body.dc-elevate-case .dc-case-impact ul {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

html.dc-elevate body.dc-elevate-case .dc-case-impact li {
  color: var(--p5-text) !important;
  font-size: var(--p5-type-md) !important;
  line-height: 1.5 !important;
}

html.dc-elevate body.dc-elevate-case .dc-case-impact li strong {
  color: var(--p5-text) !important;
  font-weight: 800 !important;
}

html.dc-elevate body.dc-elevate-case .dc-case-impact li::marker {
  color: var(--p5-text);
}

html.dc-elevate .dc-arc-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  padding: 0.45rem 0.85rem;
  background: var(--p5-red);
  color: var(--p5-white);
  transform: skewX(-12deg);
  border: 3px solid var(--p5-white);
  box-shadow: 5px 5px 0 var(--p5-cyan);
}

html.dc-elevate body.dc-elevate-case .dc-arc-label__num,
html.dc-elevate .dc-arc-label__num {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  font-size: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

html.dc-elevate .dc-arc-label__text {
  font-size: var(--p5-type-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

html.dc-elevate body.dc-elevate-case .overview,
html.dc-elevate body.dc-elevate-case section.overview,
html.dc-elevate body.dc-elevate-case .section-22,
html.dc-elevate body.dc-elevate-case .section-9,
html.dc-elevate body.dc-elevate-case .section-23,
html.dc-elevate body.dc-elevate-case .section-24,
html.dc-elevate body.dc-elevate-case .highlights,
html.dc-elevate body.dc-elevate-case .context,
html.dc-elevate body.dc-elevate-case .context-white-bg-div,
html.dc-elevate body.dc-elevate-case .personas,
html.dc-elevate body.dc-elevate-case .usability-testing,
html.dc-elevate body.dc-elevate-case .features,
html.dc-elevate body.dc-elevate-case .branding {
  padding-left: clamp(1.25rem, 4vw, 4rem);
  padding-right: clamp(1.25rem, 4vw, 4rem);
  padding-bottom: 3.5rem;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  background: transparent !important;
  background-color: transparent !important;
}

/* Webflow .context is white — force Persona black for outcome blocks */
html.dc-elevate body.dc-elevate-case section.context,
html.dc-elevate body.dc-elevate-case .context,
html.dc-elevate body.dc-elevate-case .context-white-bg-div,
html.dc-elevate body.dc-elevate-case section.highlights,
html.dc-elevate body.dc-elevate-case .highlights {
  background: var(--p5-bg) !important;
  background-color: var(--p5-bg) !important;
  color: var(--p5-text) !important;
  width: 100%;
  max-width: 80rem;
}

html.dc-elevate body.dc-elevate-case .overview::before,
html.dc-elevate body.dc-elevate-case section.overview::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: min(55%, 420px);
  height: 10px;
  background: var(--p5-red);
  transform: skewX(-18deg);
  pointer-events: none;
}

/* Case title block */
html.dc-elevate body.dc-elevate-case .heading,
html.dc-elevate body.dc-elevate-case .heading-7,
html.dc-elevate body.dc-elevate-case h1.heading-7 {
  font-family: var(--p5-display) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: -0.03em !important;
  font-size: clamp(2.8rem, 2rem + 5vw, 6.5rem) !important;
  line-height: 0.9 !important;
  transform: skewX(-8deg);
  text-shadow: 4px 4px 0 #ffffff, 7px 7px 0 #ffffff;
  color: var(--p5-text) !important;
}

html.dc-elevate body.dc-elevate-case .heading-7 .dc-p5-letter {
  color: var(--p5-text) !important;
  text-shadow: 4px 4px 0 #ffffff, 7px 7px 0 #ffffff !important;
}

/* Flash tile (e.g. P in PILOT): white parallelogram + blue glyph */
html.dc-elevate body.dc-elevate-case .heading-7 .dc-p5-letter--flash {
  background: #ffffff !important;
  color: var(--p5-text) !important;
  text-shadow: none !important;
  box-shadow: 4px 4px 0 var(--p5-cyan), 7px 7px 0 var(--p5-text);
}

html.dc-elevate body.dc-elevate-case .text-block-57 {
  display: inline-block !important;
  font-family: var(--p5-display) !important;
  font-size: var(--p5-type-xs) !important;
  font-weight: 800 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: var(--p5-black) !important;
  background: var(--p5-cyan) !important;
  padding: 0.4rem 0.75rem !important;
  margin-top: 0.75rem !important;
  transform: skewX(-12deg);
  box-shadow: 4px 4px 0 var(--p5-red);
  border: 2px solid var(--p5-white);
}

html.dc-elevate body.dc-elevate-case h1,
html.dc-elevate body.dc-elevate-case .heading-9,
html.dc-elevate body.dc-elevate-case .heading-9-outcomes,
html.dc-elevate body.dc-elevate-case .heading-9-white,
html.dc-elevate body.dc-elevate-case .heading-9-white-badge,
html.dc-elevate body.dc-elevate-case .heading-11 {
  font-family: var(--p5-display) !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  transform: skewX(-6deg);
  text-shadow: 2px 2px 0 var(--p5-red);
}

/* Meta cards: Role / Team / Tools / Timeline */
html.dc-elevate body.dc-elevate-case .overview-text,
html.dc-elevate body.dc-elevate-case .div-block-130 {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}

html.dc-elevate body.dc-elevate-case .role,
html.dc-elevate body.dc-elevate-case .team,
html.dc-elevate body.dc-elevate-case .tools,
html.dc-elevate body.dc-elevate-case .timeline,
html.dc-elevate body.dc-elevate-case .div-block-130 > div {
  background: rgba(245, 245, 245, 0.04) !important;
  border: 3px solid var(--p5-white) !important;
  box-shadow: 6px 6px 0 var(--p5-red);
  padding: 1rem 1.1rem !important;
  transform: skewX(-4deg);
  transition: transform 0.15s var(--p5-ease-snap), box-shadow 0.15s;
}

html.dc-elevate body.dc-elevate-case .role:hover,
html.dc-elevate body.dc-elevate-case .team:hover,
html.dc-elevate body.dc-elevate-case .tools:hover,
html.dc-elevate body.dc-elevate-case .timeline:hover,
html.dc-elevate body.dc-elevate-case .div-block-130 > div:hover {
  transform: skewX(-4deg) translateY(-3px);
  box-shadow: 9px 9px 0 var(--p5-cyan);
}

html.dc-elevate body.dc-elevate-case .heading-8,
html.dc-elevate body.dc-elevate-case .heading-8-new-black {
  font-family: var(--p5-display) !important;
  font-size: var(--p5-type-xs) !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: var(--p5-red) !important;
  margin-bottom: 0.45rem !important;
}

/* Media frames */
html.dc-elevate body.dc-elevate-case .hero,
html.dc-elevate body.dc-elevate-case .hero img,
html.dc-elevate body.dc-elevate-case .overview img,
html.dc-elevate body.dc-elevate-case .section-22 img,
html.dc-elevate body.dc-elevate-case .section-9 img,
html.dc-elevate body.dc-elevate-case .section-23 img,
html.dc-elevate body.dc-elevate-case .section-24 img,
html.dc-elevate body.dc-elevate-case .highlights img,
html.dc-elevate body.dc-elevate-case .features img,
html.dc-elevate body.dc-elevate-case .branding img,
html.dc-elevate body.dc-elevate-case .context img,
html.dc-elevate body.dc-elevate-case .w-background-video {
  border: 3px solid var(--p5-white) !important;
  box-shadow: 8px 8px 0 var(--p5-red);
  border-radius: 0 !important;
}

/* Moodboards / self-framed art boards — no extra white + blue chrome */
html.dc-elevate body.dc-elevate-case img[src*="moodboard"],
html.dc-elevate body.dc-elevate-case img[src*="Moodboard"],
html.dc-elevate body.dc-elevate-case img[src*="moodbaord"],
html.dc-elevate body.dc-elevate-case .image-no-bg-color img {
  border: 0 !important;
  box-shadow: none !important;
}

/* Personas graphics are translucent — sit on white so dark type stays legible */
html.dc-elevate body.dc-elevate-case img[src*="personas"],
html.dc-elevate body.dc-elevate-case img[src*="Personas"],
html.dc-elevate body.dc-elevate-case img[src*="importnant-personas"] {
  background: #fff !important;
  background-color: #fff !important;
  border: 3px solid var(--p5-white) !important;
  box-shadow: 8px 8px 0 var(--p5-red);
  padding: 0.75rem;
  box-sizing: border-box;
}

/* Competitive analysis charts — dark ink on transparent; white panel for contrast */
html.dc-elevate body.dc-elevate-case img[src*="competitive-analysis"],
html.dc-elevate body.dc-elevate-case img[src*="competitors"] {
  background: #fff !important;
  background-color: #fff !important;
  border: 3px solid var(--p5-white) !important;
  box-shadow: 8px 8px 0 var(--p5-red);
  padding: 0.75rem;
  box-sizing: border-box;
}

html.dc-elevate body.dc-elevate-case .img-with-text-analysis:has(img[src*="competitive-analysis"]) img[src*="competitive-analysis"],
html.dc-elevate body.dc-elevate-case .img-with-text-stack:has(img[src*="competitive-analysis"]) img[src*="competitive-analysis"] {
  border: 0 !important;
  box-shadow: none !important;
  padding: 0;
}

html.dc-elevate body.dc-elevate-case .exp-map-img:has(img[src*="competitive-analysis"]),
html.dc-elevate body.dc-elevate-case .img-with-text-analysis:has(img[src*="competitive-analysis"]),
html.dc-elevate body.dc-elevate-case .img-with-text-stack:has(img[src*="competitive-analysis"]),
html.dc-elevate body.dc-elevate-case .w-inline-block:has(> img[src*="competitive-analysis"]),
html.dc-elevate body.dc-elevate-case a.w-inline-block:has(img[src*="competitive-analysis"]) {
  background: #fff !important;
  background-color: #fff !important;
}

/* Dark copy on the white competitive-analysis panel */
html.dc-elevate body.dc-elevate-case .img-with-text-analysis:has(img[src*="competitive-analysis"]),
html.dc-elevate body.dc-elevate-case .img-with-text-stack:has(img[src*="competitive-analysis"]) {
  padding: 1.5rem clamp(1rem, 3vw, 2rem);
  border: 3px solid var(--p5-white);
  box-shadow: 8px 8px 0 var(--p5-red);
}

html.dc-elevate body.dc-elevate-case .img-with-text-analysis:has(img[src*="competitive-analysis"]) .quote-header,
html.dc-elevate body.dc-elevate-case .img-with-text-analysis:has(img[src*="competitive-analysis"]) .quotes-header,
html.dc-elevate body.dc-elevate-case .img-with-text-analysis:has(img[src*="competitive-analysis"]) .quotes-copy,
html.dc-elevate body.dc-elevate-case .img-with-text-analysis:has(img[src*="competitive-analysis"]) .quotes-body-copy,
html.dc-elevate body.dc-elevate-case .img-with-text-analysis:has(img[src*="competitive-analysis"]) .text-block-58,
html.dc-elevate body.dc-elevate-case .img-with-text-analysis:has(img[src*="competitive-analysis"]) p,
html.dc-elevate body.dc-elevate-case .img-with-text-analysis:has(img[src*="competitive-analysis"]) h3,
html.dc-elevate body.dc-elevate-case .img-with-text-stack:has(img[src*="competitive-analysis"]) .quote-header,
html.dc-elevate body.dc-elevate-case .img-with-text-stack:has(img[src*="competitive-analysis"]) .quotes-header,
html.dc-elevate body.dc-elevate-case .img-with-text-stack:has(img[src*="competitive-analysis"]) .quotes-copy,
html.dc-elevate body.dc-elevate-case .img-with-text-stack:has(img[src*="competitive-analysis"]) .quotes-body-copy,
html.dc-elevate body.dc-elevate-case .img-with-text-stack:has(img[src*="competitive-analysis"]) .text-block-58,
html.dc-elevate body.dc-elevate-case .img-with-text-stack:has(img[src*="competitive-analysis"]) p,
html.dc-elevate body.dc-elevate-case .img-with-text-stack:has(img[src*="competitive-analysis"]) h3 {
  color: var(--p5-black) !important;
  text-shadow: none !important;
  background: transparent !important;
}

html.dc-elevate body.dc-elevate-case .solo-img:has(img[src*="personas"]),
html.dc-elevate body.dc-elevate-case .div-block-135:has(img[src*="personas"]),
html.dc-elevate body.dc-elevate-case .duel-image-personas,
html.dc-elevate body.dc-elevate-case .personas {
  background: #fff !important;
  background-color: #fff !important;
  padding: 1.25rem;
  border: 3px solid var(--p5-white);
  box-shadow: 8px 8px 0 var(--p5-red);
}

html.dc-elevate body.dc-elevate-case .solo-img:has(img[src*="personas"]) .quote-header {
  color: var(--p5-black) !important;
}

/* Samsung ergonomics / squircle sketches — white panel + invert so white ink stays visible */
html.dc-elevate body.dc-elevate-case img[src*="finger-nail-sketch"],
html.dc-elevate body.dc-elevate-case img[src*="squircle-2"] {
  background: #fff !important;
  background-color: #fff !important;
  filter: invert(1) !important;
  border: 3px solid var(--p5-white) !important;
  box-shadow: 8px 8px 0 var(--p5-red);
  padding: 0.5rem;
  box-sizing: border-box;
}

html.dc-elevate body.dc-elevate-case .img-with-text:has(img[src*="finger-nail-sketch"]) .image,
html.dc-elevate body.dc-elevate-case .img-with-text:has(img[src*="squircle-2"]) .image {
  background: #fff !important;
  padding: 0.35rem;
}

html.dc-elevate body.dc-elevate-case .hero {
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 96% 100%, 0 100%);
  margin-bottom: 2rem;
}

/* Pilot: Webflow stacked see-everything + window-sticker with huge negative
   margin — framed elevate media then look glued/overlapping. Unstack them. */
html.dc-elevate body.dc-elevate-case .div-block-35 {
  margin-bottom: 3rem !important;
  margin-left: 0 !important;
}

html.dc-elevate body.dc-elevate-case .div-block-46 {
  margin-top: 0 !important;
  margin-bottom: 3rem !important;
}

html.dc-elevate body.dc-elevate-case .div-block-35 .image-58,
html.dc-elevate body.dc-elevate-case .div-block-46 .image-48 {
  margin-left: 0 !important;
  max-width: 100% !important;
  width: 100%;
  display: block;
}

html.dc-elevate body.dc-elevate-case .div-block-34 {
  margin-top: 0 !important;
  margin-bottom: 3rem !important;
}

/* Bounce: case hero already leads the page — drop the duplicate overview collage */
html.dc-elevate body.dc-elevate-case section.overview .hero:has(img[src*="hero-bounce"]),
html.dc-elevate body.dc-elevate-case .overview .hero:has(img[src*="hero-bounce"]) {
  display: none !important;
}

/* Immer: same — keep top case hero, hide duplicate overview logo block */
html.dc-elevate body.dc-elevate-case section.overview .hero:has(img[src*="immer-logo"]),
html.dc-elevate body.dc-elevate-case .overview .hero:has(img[src*="immer-logo"]) {
  display: none !important;
}

/* Xtelligent: keep top case hero, hide duplicate overview graphic */
html.dc-elevate body.dc-elevate-case section.overview .hero:has(img[src*="logo.png"]),
html.dc-elevate body.dc-elevate-case .overview .hero:has(img[src*="logo.png"]) {
  display: none !important;
}

html.dc-elevate body.dc-elevate-case .hero img {
  border: 0 !important;
  box-shadow: none !important;
  width: 100%;
  display: block;
}

html.dc-elevate body.dc-elevate-case .dc-elevate-case-hero {
  width: 100%;
  max-height: 78vh;
  overflow: hidden;
  margin: 0 0 2.5rem;
  border-bottom: 4px solid var(--p5-red);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 96% 100%, 0 100%);
  box-shadow: 0 12px 0 var(--p5-white);
  position: relative;
}

html.dc-elevate body.dc-elevate-case .dc-elevate-case-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(var(--p5-red-rgb),  0.28) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: p5CaseHeroStreak 2.8s 0.4s var(--p5-ease-whip) 1;
  pointer-events: none;
}

@keyframes p5CaseHeroStreak {
  to {
    transform: translateX(120%);
  }
}

html.dc-elevate body.dc-elevate-case .dc-elevate-case-hero img {
  width: 100%;
  height: min(78vh, 820px);
  object-fit: cover;
  display: block;
  border: 0 !important;
  filter: contrast(1.08);
}

html.dc-elevate .dc-elevate-pullquote {
  font-family: var(--p5-display);
  font-size: var(--p5-type-lg);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--p5-white);
  max-width: 22ch;
  margin: 2rem 0;
  padding: 1rem 1.1rem;
  background: var(--p5-red);
  transform: skewX(-8deg);
  border: 3px solid var(--p5-white);
  box-shadow: 6px 6px 0 var(--p5-cyan);
}

/* Section header bands */
html.dc-elevate body.dc-elevate-case .section-header-black-div {
  background: var(--p5-red) !important;
  border-top: 3px solid var(--p5-white);
  border-bottom: 3px solid var(--p5-white);
  box-shadow: 0 8px 0 rgba(0, 212, 200, 0.35);
  transform: skewX(-2deg);
  margin: 2.5rem 0 2rem !important;
  padding: 1.25rem clamp(1.25rem, 4vw, 3rem) !important;
}

html.dc-elevate body.dc-elevate-case .section-header-black-div .heading-9-white,
html.dc-elevate body.dc-elevate-case .section-header-black-div .heading-9-white-badge,
html.dc-elevate body.dc-elevate-case .section-header-black-div .section-header-body-copy,
html.dc-elevate body.dc-elevate-case .section-header-black-div .text-block-research-white,
html.dc-elevate body.dc-elevate-case .section-header-black-div .text-block-56-white,
html.dc-elevate body.dc-elevate-case .section-header-black-div .heading-8-white,
html.dc-elevate body.dc-elevate-case .section-header-black-div .details-white,
html.dc-elevate body.dc-elevate-case .section-header-black-div .research-details,
html.dc-elevate body.dc-elevate-case .section-header-black-div .research-text,
html.dc-elevate body.dc-elevate-case .section-header-black-div .section-header-div,
html.dc-elevate body.dc-elevate-case .section-header-black-div .section-header,
html.dc-elevate body.dc-elevate-case .section-header-black-div p,
html.dc-elevate body.dc-elevate-case .section-header-black-div span,
html.dc-elevate body.dc-elevate-case .section-header-black-div em,
html.dc-elevate body.dc-elevate-case .section-header-black-div strong,
html.dc-elevate body.dc-elevate-case .section-header-black-div h1,
html.dc-elevate body.dc-elevate-case .section-header-black-div h2,
html.dc-elevate body.dc-elevate-case .section-header-black-div h3,
html.dc-elevate body.dc-elevate-case .section-header-black-div h4,
html.dc-elevate body.dc-elevate-case .section-header-black-div [class*="text-block"],
html.dc-elevate body.dc-elevate-case .section-header-black-div [class*="heading"] {
  color: #ffffff !important;
  text-shadow: none !important;
  background: transparent !important;
  background-color: transparent !important;
}

/* White research bands (Samsung etc.) — keep panel light, force black copy */
html.dc-elevate body.dc-elevate-case .section-header-white-div {
  background: #fff !important;
  background-color: #fff !important;
  color: var(--p5-black) !important;
  border-top: 3px solid var(--p5-red);
  border-bottom: 3px solid var(--p5-red);
  padding: 2rem clamp(1.25rem, 4vw, 3rem) !important;
}

html.dc-elevate body.dc-elevate-case .section-header-white-div,
html.dc-elevate body.dc-elevate-case .section-header-white-div p,
html.dc-elevate body.dc-elevate-case .section-header-white-div li,
html.dc-elevate body.dc-elevate-case .section-header-white-div span,
html.dc-elevate body.dc-elevate-case .section-header-white-div strong,
html.dc-elevate body.dc-elevate-case .section-header-white-div h1,
html.dc-elevate body.dc-elevate-case .section-header-white-div h2,
html.dc-elevate body.dc-elevate-case .section-header-white-div h3,
html.dc-elevate body.dc-elevate-case .section-header-white-div h4,
html.dc-elevate body.dc-elevate-case .section-header-white-div .heading-9,
html.dc-elevate body.dc-elevate-case .section-header-white-div .heading-8,
html.dc-elevate body.dc-elevate-case .section-header-white-div .heading-8-new-black,
html.dc-elevate body.dc-elevate-case .section-header-white-div .text-block-research,
html.dc-elevate body.dc-elevate-case .section-header-white-div .text-block-56,
html.dc-elevate body.dc-elevate-case .section-header-white-div .text-block-56-new-black,
html.dc-elevate body.dc-elevate-case .section-header-white-div .text-block-55,
html.dc-elevate body.dc-elevate-case .section-header-white-div .text-block-55-new-black,
html.dc-elevate body.dc-elevate-case .section-header-white-div .section-header-body-copy,
html.dc-elevate body.dc-elevate-case .section-header-white-div [class*="text-block"],
html.dc-elevate body.dc-elevate-case .section-header-white-div [class*="new-black"] {
  color: var(--p5-black) !important;
  text-shadow: none !important;
}

html.dc-elevate body.dc-elevate-case .section-header-white-div .heading-9,
html.dc-elevate body.dc-elevate-case .section-header-white-div .heading-8 {
  color: var(--p5-red) !important;
}

/* Outcomes title (e.g. Reflecting…) — blue letters, white flash glyph */
html.dc-elevate body.dc-elevate-case .heading-9-outcomes,
html.dc-elevate body.dc-elevate-case .section-header-white-div .heading-9-outcomes,
html.dc-elevate body.dc-elevate-case .section-header-white-div .heading-9-outcomes .dc-p5-letter {
  color: #1e41b6 !important;
  text-shadow: 3px 3px 0 #ffffff, 6px 6px 0 #ffffff !important;
}

html.dc-elevate body.dc-elevate-case .heading-9-outcomes .dc-p5-letter--flash,
html.dc-elevate body.dc-elevate-case .section-header-white-div .heading-9-outcomes .dc-p5-letter--flash {
  background: #1e41b6 !important;
  color: #ffffff !important;
  text-shadow: none !important;
  box-shadow: 3px 3px 0 var(--p5-cyan), 6px 6px 0 #ffffff;
}

/* In-page section jump menu */
html.dc-elevate body.dc-elevate-case .c-menu {
  position: fixed !important;
  top: 50% !important;
  right: 0.75rem !important;
  left: auto !important;
  transform: translateY(-50%) skewX(-8deg);
  z-index: 50;
  background: rgba(10, 10, 10, 0.85);
  border: 3px solid var(--p5-white);
  box-shadow: -6px 6px 0 var(--p5-red);
  padding: 0.75rem 0.65rem;
}

html.dc-elevate body.dc-elevate-case .c-menu-symbol {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.45rem !important;
  width: auto !important;
  height: auto !important;
  background: transparent !important;
  border: 0 !important;
}

html.dc-elevate body.dc-elevate-case .c-menu_link {
  font-family: var(--p5-display) !important;
  font-size: 0.65rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  color: var(--p5-white) !important;
  background: transparent;
  border: 2px solid var(--p5-white);
  padding: 0.4rem 0.55rem !important;
  transition: background 0.12s, color 0.12s, transform 0.12s var(--p5-ease-snap),
    box-shadow 0.12s;
}

html.dc-elevate body.dc-elevate-case .c-menu_link:hover,
html.dc-elevate body.dc-elevate-case .c-menu_link.w--current {
  background: var(--p5-red) !important;
  color: var(--p5-white) !important;
  box-shadow: 3px 3px 0 var(--p5-cyan);
  transform: translateX(-3px) scale(1.04);
}

/* Selected works strip removed — More work nav takes the Daniel Choe slot */
html.dc-elevate body.dc-elevate-case .selected-works-copy,
html.dc-elevate body.dc-elevate-case .selected-works .div-block-131,
html.dc-elevate body.dc-elevate-case .selected-works .tablet-size-list,
html.dc-elevate body.dc-elevate-case .selected-works .div-block-132 > .div-block-131,
html.dc-elevate body.dc-elevate-case .footer-name,
html.dc-elevate body.dc-elevate-play .selected-works-copy,
html.dc-elevate body.dc-elevate-play .selected-works .div-block-131,
html.dc-elevate body.dc-elevate-play .selected-works .tablet-size-list,
html.dc-elevate body.dc-elevate-play .selected-works .div-block-132,
html.dc-elevate body.dc-elevate-play .footer-name,
html.dc-elevate body.dc-elevate-play .footer-line {
  display: none !important;
}

html.dc-elevate body.dc-elevate-case .selected-works .div-block-132 {
  display: none !important;
}

html.dc-elevate body.dc-elevate-case .selected-works,
html.dc-elevate body.dc-elevate-case .footer-box-white,
html.dc-elevate body.dc-elevate-play .selected-works,
html.dc-elevate body.dc-elevate-play .footer-box-white {
  background: var(--p5-bg) !important;
  border-top: 0;
  padding: 2rem clamp(1rem, 3vw, 3rem) !important;
  margin-top: 3rem;
  overflow: visible !important;
  max-width: 100%;
  box-sizing: border-box;
  align-items: center !important;
  text-align: center;
}

html.dc-elevate body.dc-elevate-case .footer-full-name,
html.dc-elevate body.dc-elevate-play .footer-full-name {
  overflow: visible !important;
  max-width: min(72rem, 100%);
  width: 100%;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

html.dc-elevate body.dc-elevate-case .container-9,
html.dc-elevate body.dc-elevate-play .container-9 {
  overflow: visible !important;
  max-width: 100%;
  box-sizing: border-box;
}

html.dc-elevate body.dc-elevate-case .text-block-60,
html.dc-elevate body.dc-elevate-play .text-block-60 {
  color: rgba(30, 65, 182, 0.55) !important;
  display: block;
  margin-top: 2.5rem !important;
  padding-top: 0.5rem;
  text-align: center;
  width: 100%;
}

/* More work nav — sits where the footer name was */
html.dc-elevate body.dc-elevate-case .footer-full-name .dc-case-nav,
html.dc-elevate body.dc-elevate-case .selected-works .dc-case-nav,
html.dc-elevate body.dc-elevate-play .footer-full-name .dc-case-nav,
html.dc-elevate body.dc-elevate-play .selected-works .dc-case-nav {
  margin: 0 auto 1.25rem;
  padding: 0;
  border-top: 0;
  max-width: min(72rem, 100%);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

html.dc-elevate body.dc-elevate-case .footer-full-name .dc-case-nav__kicker,
html.dc-elevate body.dc-elevate-case .selected-works .dc-case-nav__kicker,
html.dc-elevate body.dc-elevate-play .footer-full-name .dc-case-nav__kicker,
html.dc-elevate body.dc-elevate-play .selected-works .dc-case-nav__kicker {
  display: block;
  width: fit-content;
  font-family: var(--p5-display);
  font-size: clamp(2rem, 1.2rem + 4vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--p5-text);
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  margin: 0 auto 2.25rem;
  line-height: 1;
  transform: skewX(-8deg);
  text-align: center;
  text-shadow: 3px 3px 0 var(--p5-cyan), -1px -1px 0 var(--p5-cyan), 1px -1px 0 var(--p5-cyan),
    -1px 1px 0 var(--p5-cyan);
}

html.dc-elevate body.dc-elevate-case .footer-full-name .dc-case-nav__row,
html.dc-elevate body.dc-elevate-case .selected-works .dc-case-nav__row,
html.dc-elevate body.dc-elevate-play .footer-full-name .dc-case-nav__row,
html.dc-elevate body.dc-elevate-play .selected-works .dc-case-nav__row {
  margin-top: 0.35rem;
  width: 100%;
  max-width: 100%;
}

html.dc-elevate body.dc-elevate-case .dc-case-nav__pager,
html.dc-elevate body.dc-elevate-play .dc-case-nav__pager {
  margin-top: 1rem;
  width: 100%;
  max-width: 100%;
}

/* Universal Persona case nav strip */
.dc-case-nav {
  margin: 3.5rem auto 2rem;
  padding: 1.5rem 0 0;
  border-top: 3px solid var(--p5-white);
  max-width: min(72rem, 100%);
  width: 100%;
  box-sizing: border-box;
  overflow: visible;
}

.dc-case-nav__kicker {
  display: inline-block;
  font-size: var(--p5-type-xs);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--p5-black);
  background: var(--p5-cyan);
  padding: 0.35rem 0.7rem;
  transform: skewX(-12deg);
  box-shadow: 4px 4px 0 var(--p5-red);
  margin-bottom: 1rem;
}

.dc-case-nav__row {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: space-between;
  gap: clamp(0.2rem, 0.4vw, 0.4rem);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  /* Inset so skewX + hard shadow stay inside overflow-x:hidden on html */
  padding: 0.15rem 0.55rem 0.55rem 0.35rem;
  overflow: visible;
}

.dc-case-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  max-width: 100%;
  gap: 0.2rem;
  font-family: var(--p5-display);
  font-size: clamp(0.48rem, 0.32rem + 0.48vw, 0.68rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: var(--p5-text);
  border: 2px solid var(--p5-text);
  padding: 0.45rem clamp(0.28rem, 0.2rem + 0.35vw, 0.55rem);
  transform: skewX(-8deg);
  box-shadow: 3px 3px 0 var(--p5-red);
  transition: transform 0.15s var(--p5-ease-snap), background 0.15s, box-shadow 0.15s;
  box-sizing: border-box;
}

.dc-case-nav__link:hover,
.dc-case-nav__link.is-current:hover {
  background: var(--p5-red);
  box-shadow: 4px 4px 0 var(--p5-cyan);
  transform: skewX(-8deg) scale(1.03);
  color: var(--p5-white) !important;
}

html.dc-elevate body.dc-elevate-case .dc-case-nav__link:hover,
html.dc-elevate body.dc-elevate-case .dc-case-nav__link.is-current:hover,
html.dc-elevate body.dc-elevate-play .dc-case-nav__link:hover,
html.dc-elevate body.dc-elevate-play .dc-case-nav__link.is-current:hover {
  color: var(--p5-white) !important;
}

.dc-case-nav__link.is-current {
  background: var(--p5-white);
  color: var(--p5-black);
  box-shadow: 3px 3px 0 var(--p5-cyan);
}

.dc-case-nav__pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.25rem;
}

.dc-case-nav__pager a {
  font-family: var(--p5-display);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--p5-black);
  background: var(--p5-white);
  border: 3px solid var(--p5-white);
  padding: 0.7rem 1rem;
  transform: skewX(-12deg);
  box-shadow: 5px 5px 0 var(--p5-red);
  transition: transform 0.15s var(--p5-ease-snap), background 0.15s, color 0.15s,
    box-shadow 0.15s;
}

.dc-case-nav__pager a:hover {
  background: var(--p5-red);
  color: var(--p5-white);
  border-color: var(--p5-red);
  box-shadow: 7px 7px 0 var(--p5-cyan);
  transform: skewX(-12deg) scale(1.04);
}

/* Sparse arc body blocks */
html.dc-elevate body.dc-elevate-case .dc-case-block,
.dc-case-block {
  margin: 1.5rem 0 2rem;
  padding: 1.25rem 1.35rem;
  border: 3px solid var(--p5-white);
  box-shadow: 8px 8px 0 var(--p5-red);
  background: rgba(10, 10, 10, 0.92) !important;
  background-color: var(--p5-black) !important;
  transform: skewX(-2deg);
  color: var(--p5-white) !important;
}

html.dc-elevate body.dc-elevate-case .dc-case-block h3,
.dc-case-block h3 {
  font-family: var(--p5-display) !important;
  font-size: var(--p5-type-md) !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em;
  color: var(--p5-cyan) !important;
  margin: 0 0 0.75rem !important;
  transform: skewX(-6deg);
}

html.dc-elevate body.dc-elevate-case .dc-case-block p,
html.dc-elevate body.dc-elevate-case .dc-case-block .dc-case-block__body,
.dc-case-block p,
.dc-case-block .dc-case-block__body {
  font-size: var(--p5-type-md) !important;
  line-height: 1.55 !important;
  color: var(--p5-white) !important;
  margin: 0;
}

.dc-case-block a {
  color: var(--p5-cyan) !important;
  font-weight: 700;
}

.dc-case-media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}

.dc-case-media-grid img {
  width: 100%;
  display: block;
  border: 3px solid var(--p5-white) !important;
  box-shadow: 6px 6px 0 var(--p5-red);
  aspect-ratio: 1;
  object-fit: cover;
}

html.dc-elevate body.dc-elevate-case .ig-slider,
html.dc-elevate body.dc-elevate-case .ig-slider-story,
html.dc-elevate body.dc-elevate-case .quads,
html.dc-elevate body.dc-elevate-case .w-slider {
  border: 3px solid var(--p5-white);
  box-shadow: 8px 8px 0 var(--p5-red);
  margin-bottom: 1.5rem;
}

html.dc-elevate body.dc-elevate-case a:not(.link-3):not(.c-menu_link) {
  transition: color 0.12s, text-shadow 0.12s;
}

html.dc-elevate body.dc-elevate-case a:not(.link-3):not(.c-menu_link):not(.dc-case-nav__link):not(.dc-case-nav__pager a):hover {
  color: var(--p5-red) !important;
}

/* Hide duplicate brand/btn join clutter; keep DC mark */
html.dc-elevate body.dc-elevate-case .btn-join,
html.dc-elevate body.dc-elevate-case .brand.w-nav-brand,
html.dc-elevate body.dc-elevate-case .cursor-wrapper,
html.dc-elevate body.dc-elevate-play .btn-join,
html.dc-elevate body.dc-elevate-play .brand.w-nav-brand,
html.dc-elevate body.dc-elevate-play .cursor-wrapper,
html.dc-elevate body.dc-elevate-about .btn-join,
html.dc-elevate body.dc-elevate-about .brand.w-nav-brand,
html.dc-elevate body.dc-elevate-about .cursor-wrapper {
  display: none !important;
}

html.dc-elevate body.dc-elevate-case .dc-p5-slash {
  position: absolute;
  background: var(--p5-red);
  pointer-events: none;
  z-index: 0;
}

html.dc-elevate body.dc-elevate-case .overview-white-div,
html.dc-elevate body.dc-elevate-case .all-content-white {
  position: relative;
  overflow: hidden;
}

/* Protect overlay — persona flair, logic untouched */
.protect-overlay {
  background: rgba(10, 10, 10, 0.88) !important;
}

.protect-card {
  font-family: var(--p5-sans) !important;
  border-radius: 0 !important;
  border: 3px solid var(--p5-white) !important;
  background: var(--p5-black) !important;
  box-shadow: 10px 10px 0 var(--p5-red) !important;
  transform: skewX(-3deg);
}

.protect-btn--primary {
  background: var(--p5-red) !important;
  color: #fff !important;
  border-radius: 0 !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

html.dc-elevate body.dc-elevate-play,
html.dc-elevate body.dc-elevate-about {
  background: var(--p5-bg) !important;
  color: var(--p5-text);
}

/* ========== ABOUT PAGE — Persona chrome ========== */
html.dc-elevate body.dc-elevate-about .c-menu {
  display: none !important;
}

html.dc-elevate body.dc-elevate-about .all-content,
html.dc-elevate body.dc-elevate-about .all-content-white,
html.dc-elevate body.dc-elevate-about .w-container.all-content-white {
  background: transparent !important;
  background-color: transparent !important;
  max-width: none !important;
}

html.dc-elevate body.dc-elevate-about,
html.dc-elevate body.dc-elevate-about.body {
  background-color: var(--p5-bg) !important;
  color: var(--p5-text) !important;
}

html.dc-elevate body.dc-elevate-about .about-page {
  max-width: 56rem;
  margin: 0 auto;
  padding: 6.5rem clamp(1.25rem, 4vw, 3rem) 6rem;
  color: var(--p5-text);
}

html.dc-elevate body.dc-elevate-about .dc-about-title {
  margin: 0 0 2.5rem;
}

html.dc-elevate body.dc-elevate-about .dc-elevate-section-kicker,
html.dc-elevate body.dc-elevate-about .dc-about-player-kicker {
  display: inline-block;
  font-size: var(--p5-type-xs);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--p5-black) !important;
  background: var(--p5-cyan);
  padding: 0.35rem 0.7rem;
  transform: skewX(-12deg);
  margin-bottom: 0.85rem;
  box-shadow: 4px 4px 0 var(--p5-red);
}

html.dc-elevate body.dc-elevate-about .dc-about-title h1 {
  margin: 0.85rem 0 0;
  font-family: var(--p5-display);
  font-size: var(--p5-type-2xl);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--p5-text) !important;
  transform: skewX(-8deg);
  text-shadow: 4px 4px 0 #ffffff, 7px 7px 0 #ffffff !important;
}

html.dc-elevate body.dc-elevate-about .dc-about-title .dc-p5-letter {
  color: var(--p5-text) !important;
  text-shadow: 4px 4px 0 #ffffff, 7px 7px 0 #ffffff !important;
}

html.dc-elevate body.dc-elevate-about .dc-about-title .dc-p5-letter--flash {
  background: #ffffff !important;
  color: var(--p5-text) !important;
  text-shadow: none !important;
  box-shadow: 4px 4px 0 var(--p5-cyan), 7px 7px 0 var(--p5-text);
}

html.dc-elevate body.dc-elevate-about .about-hero {
  padding-top: 0;
}

html.dc-elevate body.dc-elevate-about .about-hero__masthead {
  display: grid;
  grid-template-columns: minmax(10rem, 15rem) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

html.dc-elevate body.dc-elevate-about .about-hero__photo-wrap {
  border-radius: 0 !important;
  aspect-ratio: 3 / 4;
  max-width: none;
  overflow: hidden;
  background: var(--p5-black) !important;
  border: 3px solid var(--p5-white);
  box-shadow: 10px 10px 0 var(--p5-red);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 88% 100%, 0 100%);
  transition: transform 0.25s var(--p5-ease-snap), box-shadow 0.25s;
}

html.dc-elevate body.dc-elevate-about .about-hero__photo-wrap:hover {
  transform: skewX(-3deg) rotate(-1deg);
  box-shadow: 14px 14px 0 var(--p5-cyan);
}

html.dc-elevate body.dc-elevate-about .about-hero__photo {
  filter: grayscale(1) contrast(1.15);
  transition: filter 0.25s;
}

html.dc-elevate body.dc-elevate-about .about-hero__photo-wrap:hover .about-hero__photo {
  filter: grayscale(0) contrast(1.08);
}

html.dc-elevate body.dc-elevate-about .about-hero__lede,
html.dc-elevate body.dc-elevate-about .about-hero__status {
  color: #1e41b6 !important;
  font-size: var(--p5-type-md) !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
}

html.dc-elevate body.dc-elevate-about .about-hero__status a,
html.dc-elevate body.dc-elevate-about .about-page a {
  color: var(--p5-black) !important;
  text-decoration: none !important;
  box-shadow: inset 0 -2px 0 var(--p5-red);
  transition: color 0.12s, box-shadow 0.12s;
}

html.dc-elevate body.dc-elevate-about .about-hero__status a:hover {
  color: var(--p5-black) !important;
  box-shadow: inset 0 -2px 0 var(--p5-cyan);
}

html.dc-elevate body.dc-elevate-about .dc-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

html.dc-elevate body.dc-elevate-about .dc-about-actions a {
  font-size: var(--p5-type-xs);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none !important;
  color: var(--p5-black) !important;
  background: var(--p5-white);
  border: 3px solid var(--p5-white);
  padding: 0.65rem 0.95rem;
  transform: skewX(-12deg);
  box-shadow: 4px 4px 0 var(--p5-red);
  transition: transform 0.15s var(--p5-ease-snap), background 0.15s, color 0.15s,
    box-shadow 0.15s;
}

html.dc-elevate body.dc-elevate-about .dc-about-actions a:hover {
  background: var(--p5-red);
  color: var(--p5-white) !important;
  border-color: var(--p5-red);
  transform: skewX(-12deg) scale(1.06) rotate(-1deg);
  box-shadow: 7px 7px 0 var(--p5-cyan);
  opacity: 1;
}

html.dc-elevate body.dc-elevate-about .about-player-wrap {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 3px solid rgba(30, 65, 182, 0.2);
  position: relative;
}

html.dc-elevate body.dc-elevate-about .about-player-wrap::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 4.5rem;
  height: 3px;
  background: var(--p5-red);
}

html.dc-elevate body.dc-elevate-about .dc-about-player-kicker {
  display: inline-block;
  margin-bottom: 1.25rem;
}

html.dc-elevate body.dc-elevate-about .about-player {
  background: transparent !important;
  color: #1e41b6 !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 1.5rem 0;
  transform: none;
}

html.dc-elevate body.dc-elevate-about .about-player__inner {
  transform: none;
}

html.dc-elevate body.dc-elevate-about .about-player__series,
html.dc-elevate body.dc-elevate-about .about-player__times,
html.dc-elevate body.dc-elevate-about .about-player__desc {
  color: #1e41b6 !important;
}

html.dc-elevate body.dc-elevate-about .about-player__upnext-label {
  letter-spacing: 0.18em !important;
  font-weight: 800 !important;
  color: var(--p5-black) !important;
}

html.dc-elevate body.dc-elevate-about .about-player__title {
  font-family: var(--p5-display) !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #1e41b6 !important;
  transform: skewX(-6deg);
  text-shadow: none !important;
}

html.dc-elevate body.dc-elevate-about .about-player__btn {
  color: #1e41b6 !important;
}

html.dc-elevate body.dc-elevate-about .about-player__btn--play {
  background: #1e41b6 !important;
  color: #ffffff !important;
  border-radius: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  transform: skewX(-10deg);
  transition: transform 0.15s var(--p5-ease-snap), background 0.15s;
}

html.dc-elevate body.dc-elevate-about .about-player__btn--play:hover {
  background: var(--p5-cyan) !important;
  color: var(--p5-black) !important;
  transform: skewX(-10deg) scale(1.08);
}

html.dc-elevate body.dc-elevate-about .about-player__btn:focus-visible {
  outline: 3px solid var(--p5-cyan);
  outline-offset: 3px;
}

html.dc-elevate body.dc-elevate-about .about-player__scrub-track {
  background: rgba(30, 65, 182, 0.2) !important;
  border-radius: 0 !important;
}

html.dc-elevate body.dc-elevate-about .about-player__scrub-fill {
  background: #1e41b6 !important;
  border-radius: 0 !important;
}

html.dc-elevate body.dc-elevate-about .about-player__queue-item {
  border-top: 2px solid rgba(30, 65, 182, 0.15) !important;
  border-radius: 0 !important;
  transition: background 0.12s, transform 0.12s;
}

html.dc-elevate body.dc-elevate-about .about-player__queue-item:hover {
  background: rgba(30, 65, 182, 0.08) !important;
  transform: translateX(4px);
}

html.dc-elevate body.dc-elevate-about .about-player__queue-item.is-current {
  background: rgba(0, 212, 200, 0.12) !important;
  margin: 0 !important;
  padding-left: 0.85rem;
  border-left: 4px solid var(--p5-cyan);
  border-radius: 0 !important;
}

html.dc-elevate body.dc-elevate-about .about-player__queue-title,
html.dc-elevate body.dc-elevate-about .about-player__queue-item.is-current .about-player__queue-title {
  color: #1e41b6 !important;
  font-weight: 700;
}

html.dc-elevate body.dc-elevate-about .about-player__queue-desc,
html.dc-elevate body.dc-elevate-about .about-player__queue-meta,
html.dc-elevate body.dc-elevate-about .about-player__queue-duration,
html.dc-elevate body.dc-elevate-about .about-player__queue-like-count {
  color: #1e41b6 !important;
}

html.dc-elevate body.dc-elevate-about .about-player__queue-thumb,
html.dc-elevate body.dc-elevate-about .about-player__queue-thumb--zoom {
  border-radius: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

html.dc-elevate body.dc-elevate-about .about-player__queue-thumb--zoom:hover {
  box-shadow: none !important;
}

html.dc-elevate body.dc-elevate-about .about-player__queue-heart,
html.dc-elevate body.dc-elevate-about .about-player__heart-icon,
html.dc-elevate body.dc-elevate-about .about-player__queue-play {
  color: #1e41b6 !important;
}

html.dc-elevate body.dc-elevate-about .about-player__queue-play {
  background: rgba(30, 65, 182, 0.12) !important;
}

html.dc-elevate body.dc-elevate-about .about-player__queue-play:hover {
  background: rgba(30, 65, 182, 0.22) !important;
}

html.dc-elevate body.dc-elevate-about .about-player__queue-icon {
  border-color: transparent transparent transparent #1e41b6 !important;
}

html.dc-elevate body.dc-elevate-about .about-player__queue-play.is-playing .about-player__queue-icon {
  border-left-color: #1e41b6 !important;
  border-right-color: #1e41b6 !important;
}

html.dc-elevate body.dc-elevate-about .about-player__case {
  color: var(--p5-cyan) !important;
}

html.dc-elevate body.dc-elevate-about .about-thumb-lightbox__backdrop {
  background: rgba(10, 10, 10, 0.92) !important;
}

html.dc-elevate body.dc-elevate-about .about-thumb-lightbox__panel img,
html.dc-elevate body.dc-elevate-about .about-thumb-lightbox__panel video {
  border: 3px solid var(--p5-white);
  box-shadow: 10px 10px 0 var(--p5-red);
}

@media (max-width: 700px) {
  html.dc-elevate body.dc-elevate-about .about-hero__masthead {
    grid-template-columns: 1fr;
  }

  html.dc-elevate body.dc-elevate-about .about-hero__photo-wrap {
    max-width: 14rem;
  }

  html.dc-elevate body.dc-elevate-about .dc-about-title h1 {
    font-size: clamp(3rem, 18vw, 5rem);
  }
}

/* Force light Webflow text dark pages */
html.dc-elevate body.dc-elevate-home,
html.dc-elevate body.dc-elevate-home .text-block-50,
html.dc-elevate body.dc-elevate-home .text-block-bp1,
html.dc-elevate body.dc-elevate-home .heading-xlarge {
  color: var(--p5-text) !important;
}

html.dc-elevate body.dc-elevate-home .lottie-animation-2,
html.dc-elevate body.dc-elevate-home .image-67 {
  filter: invert(1) brightness(1.2) !important;
}

/* ========== RESPONSIVE ========== */
@media (min-width: 900px) {
  html.dc-elevate body.dc-elevate-home .dc-elevate-shell {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: end;
  }

  html.dc-elevate body.dc-elevate-home .dc-elevate-shell--flip {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  html.dc-elevate body.dc-elevate-home .dc-elevate-shell--flip .dc-elevate-project-copy {
    order: 2;
  }

  html.dc-elevate body.dc-elevate-home .dc-elevate-closer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: end;
  }

  html.dc-elevate body.dc-elevate-home .dc-elevate-closer__portrait {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  html.dc-elevate body.dc-elevate-home .dc-elevate-hero-visual {
    width: min(72vw, 280px);
    top: 8%;
    right: -10%;
    opacity: 0.45;
  }

  html.dc-elevate body.dc-elevate-home .section-2 {
    min-height: 80vh;
    padding-top: 5.5rem;
  }

  html.dc-elevate .c-menu-home,
  html.dc-elevate body.dc-elevate-case .c-menu {
    display: none !important;
  }

  .dc-case-nav__row {
    gap: 0.18rem;
    padding-right: 0.65rem;
  }

  .dc-case-nav__link {
    font-size: 0.5rem;
    padding: 0.38rem 0.28rem;
    letter-spacing: 0.02em;
  }

  html.dc-elevate body.dc-elevate-home .heading-11 {
    text-shadow: 3px 3px 0 #ffffff, 6px 6px 0 #ffffff;
  }

  html.dc-elevate body.dc-elevate-home .dc-elevate-project-media {
    aspect-ratio: 4 / 3;
    box-shadow: 6px 6px 0 var(--p5-red);
  }

  html.dc-elevate body.dc-elevate-case .dc-elevate-case-hero img {
    height: 48vh;
  }

  html.dc-elevate .link-3,
  html.dc-elevate a.link-3 {
    min-width: 2.75rem;
    min-height: 2.75rem;
    font-size: 1rem !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  html.dc-elevate body.dc-elevate-home .dc-elevate-shell {
    grid-template-columns: 1fr;
  }
}

/* Gamified: keep bento, hide narrative extras */
html.dc-elevate body.dc-home-gamified .dc-elevate-closer,
html.dc-elevate body.dc-home-gamified .dc-elevate-hero-visual,
html.dc-elevate body.dc-home-gamified .dc-p5-slash {
  display: none !important;
}

html.dc-elevate body.dc-home-gamified {
  background: var(--p5-black) !important;
}

html.dc-elevate body.dc-home-gamified .dc-gamified-map,
html.dc-elevate body.dc-home-gamified .dc-bento__title,
html.dc-elevate body.dc-home-gamified .dc-bento__heading,
html.dc-elevate body.dc-home-gamified .dc-bento__desc {
  color: var(--p5-white) !important;
}

html.dc-elevate body.dc-home-gamified .dc-bento__item {
  border: 3px solid var(--p5-white) !important;
  box-shadow: 5px 5px 0 var(--p5-red);
  transform: skewX(-2deg);
  transition: transform 0.15s var(--p5-ease-snap), box-shadow 0.15s;
}

html.dc-elevate body.dc-home-gamified .dc-bento__item:hover {
  opacity: 1 !important;
  transform: skewX(-2deg) scale(1.03) rotate(-0.5deg);
  box-shadow: 8px 8px 0 var(--p5-cyan);
}

/* ========== Samsung last: kill ALL elevate white/blue media chrome ==========
   Must beat section-scoped rules like `.context img` / `.highlights img`. */
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung img,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung video,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .w-background-video,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .hero,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .hero img,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .overview img,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .section-22 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .section-9 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .section-23 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .section-24 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .highlights img,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .features img,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .branding img,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .context img,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .ig-slider,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .ig-slider-story,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .quads,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .w-slider,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .dc-elevate-case-hero,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .dc-elevate-case-hero img,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .dc-case-split__media,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .dc-case-media-grid img,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .image,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .image-no-bg-color,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .image-no-bg-color img,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .solo-img,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .personas,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .duel-image,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .duel-image-personas,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .duel-image-testing,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .img-with-text .image,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .img-with-text-analysis,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .img-with-text-stack,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .final-product-black-bg img,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .final-section-black-bg img,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung img[src*="finger-nail-sketch"],
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung img[src*="squircle-2"],
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung img[src*="personas"],
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung img[src*="competitive-analysis"],
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung img[src*="competitors"],
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung a.w-inline-block,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .w-lightbox {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

html.dc-elevate body.dc-elevate-case.dc-elevate-samsung img[src*="finger-nail-sketch"],
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung img[src*="squircle-2"],
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung img[src*="personas"],
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung img[src*="competitive-analysis"],
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung img[src*="competitors"] {
  padding: 0 !important;
  background: transparent !important;
}

/* Samsung sketches: page is light gray — invert makes them unreadable */
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung img[src*="finger-nail-sketch"],
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung img[src*="squircle-2"] {
  filter: none !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
  padding: 0.75rem !important;
  box-sizing: border-box;
}

html.dc-elevate body.dc-elevate-case.dc-elevate-samsung img[src*="finger-nail-sketch"] {
  /* faint line art — bump contrast without invert */
  filter: contrast(1.45) !important;
}

html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .img-with-text:has(img[src*="finger-nail-sketch"]) .image,
html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .img-with-text:has(img[src*="squircle-2"]) .image {
  background: #ffffff !important;
  padding: 0.5rem;
}

html.dc-elevate body.dc-elevate-case.dc-elevate-samsung .dc-elevate-case-hero {
  border-bottom: 0 !important;
  clip-path: none;
}

/* Samsung / Xtelligent / Rico / Bounce / LG meta: one box */
html.dc-elevate body.dc-elevate-case:is(.dc-elevate-samsung, .dc-elevate-xtelligent, .dc-elevate-rico, .dc-elevate-bounce, .dc-elevate-lg) .div-block-130 {
  display: flex !important;
  flex-direction: column;
  grid-template-columns: none;
  gap: 1.1rem;
  background: rgba(245, 245, 245, 0.04) !important;
  border: 3px solid var(--p5-white) !important;
  box-shadow: 6px 6px 0 var(--p5-red);
  padding: 1.15rem 1.25rem !important;
  transform: skewX(-4deg);
  transition: transform 0.15s var(--p5-ease-snap), box-shadow 0.15s;
}

html.dc-elevate body.dc-elevate-case:is(.dc-elevate-samsung, .dc-elevate-xtelligent, .dc-elevate-rico, .dc-elevate-bounce, .dc-elevate-lg) .div-block-130:hover {
  transform: skewX(-4deg) translateY(-3px);
  box-shadow: 9px 9px 0 var(--p5-cyan);
}

html.dc-elevate body.dc-elevate-case:is(.dc-elevate-samsung, .dc-elevate-xtelligent, .dc-elevate-rico, .dc-elevate-bounce, .dc-elevate-lg) .div-block-130 > .role,
html.dc-elevate body.dc-elevate-case:is(.dc-elevate-samsung, .dc-elevate-xtelligent, .dc-elevate-rico, .dc-elevate-bounce, .dc-elevate-lg) .div-block-130 > .team,
html.dc-elevate body.dc-elevate-case:is(.dc-elevate-samsung, .dc-elevate-xtelligent, .dc-elevate-rico, .dc-elevate-bounce, .dc-elevate-lg) .div-block-130 > .tools,
html.dc-elevate body.dc-elevate-case:is(.dc-elevate-samsung, .dc-elevate-xtelligent, .dc-elevate-rico, .dc-elevate-bounce, .dc-elevate-lg) .div-block-130 > .timeline,
html.dc-elevate body.dc-elevate-case:is(.dc-elevate-samsung, .dc-elevate-xtelligent, .dc-elevate-rico, .dc-elevate-bounce, .dc-elevate-lg) .div-block-130 > div {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  transform: none !important;
  transition: none;
}

html.dc-elevate body.dc-elevate-case:is(.dc-elevate-samsung, .dc-elevate-xtelligent, .dc-elevate-rico, .dc-elevate-bounce, .dc-elevate-lg) .div-block-130 > .role:hover,
html.dc-elevate body.dc-elevate-case:is(.dc-elevate-samsung, .dc-elevate-xtelligent, .dc-elevate-rico, .dc-elevate-bounce, .dc-elevate-lg) .div-block-130 > .team:hover,
html.dc-elevate body.dc-elevate-case:is(.dc-elevate-samsung, .dc-elevate-xtelligent, .dc-elevate-rico, .dc-elevate-bounce, .dc-elevate-lg) .div-block-130 > .tools:hover,
html.dc-elevate body.dc-elevate-case:is(.dc-elevate-samsung, .dc-elevate-xtelligent, .dc-elevate-rico, .dc-elevate-bounce, .dc-elevate-lg) .div-block-130 > .timeline:hover,
html.dc-elevate body.dc-elevate-case:is(.dc-elevate-samsung, .dc-elevate-xtelligent, .dc-elevate-rico, .dc-elevate-bounce, .dc-elevate-lg) .div-block-130 > div:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* ========== Rico: kill elevate white/blue media chrome ========== */
html.dc-elevate body.dc-elevate-case.dc-elevate-rico img,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico video,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .w-background-video,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .hero,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .hero img,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .overview img,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .section-22 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .section-9 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .section-23 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .section-24 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .highlights img,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .features img,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .branding img,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .context img,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .ig-slider,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .ig-slider-story,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .quads,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .w-slider,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .dc-elevate-case-hero,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .dc-elevate-case-hero img,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .dc-case-split__media,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .dc-case-media-grid img,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .image,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .image-no-bg-color,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .image-no-bg-color img,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .solo-img,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .personas,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .duel-image,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .duel-image-personas,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .duel-image-testing,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .img-with-text .image,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .img-with-text-analysis,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .img-with-text-stack,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico a.w-inline-block,
html.dc-elevate body.dc-elevate-case.dc-elevate-rico .w-lightbox {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

html.dc-elevate body.dc-elevate-case.dc-elevate-rico .dc-elevate-case-hero {
  border-bottom: 0 !important;
  clip-path: none;
}

/* ========== Bounce: kill elevate white/blue media chrome ========== */
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce img,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce video,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .w-background-video,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .hero,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .hero img,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .overview img,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .section-22 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .section-9 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .section-23 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .section-24 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .highlights img,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .features img,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .branding img,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .context img,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .ig-slider,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .ig-slider-story,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .quads,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .w-slider,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .dc-elevate-case-hero,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .dc-elevate-case-hero img,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .dc-case-split__media,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .dc-case-media-grid img,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .image,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .image-no-bg-color,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .image-no-bg-color img,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .solo-img,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .personas,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .duel-image,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .duel-image-personas,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .duel-image-testing,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .img-with-text .image,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .img-with-text-analysis,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .img-with-text-stack,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce a.w-inline-block,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .w-lightbox {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .dc-elevate-case-hero {
  /* Match Rico: banner crop, no angled clip / bottom rule */
  border-bottom: 0 !important;
  clip-path: none;
  max-height: 78vh;
  overflow: hidden;
  box-shadow: none !important;
}

html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .dc-elevate-case-hero img {
  width: 100% !important;
  height: min(78vh, 820px) !important;
  object-fit: cover !important;
  /* Prefer top of collage (logo + phone tops) within the Rico-style banner */
  object-position: center top !important;
  filter: contrast(1.08);
}

/* Bounce: phone booking GIFs — drop white matte around device mockups */
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .image-no-gray,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .image-no-gray-kiosk {
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible;
}

html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .image-no-gray .w-background-video,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .image-no-gray .background-video-7,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .image-no-gray video,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .image-no-gray-kiosk .w-background-video,
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .image-no-gray-kiosk video {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  background-color: transparent !important;
  /* White artboard in the MP4/poster → transparent against page gray */
  mix-blend-mode: darken;
}

/* Bounce: space between “Paddle Tennis…” chip and Role/Team meta box */
html.dc-elevate body.dc-elevate-case.dc-elevate-bounce .overview-text {
  margin-top: 2.5rem !important;
}

/* ========== Pilot: kill elevate white/blue media chrome ========== */
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot img,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot video,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .w-background-video,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .hero,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .hero img,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .overview img,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .section-22 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .section-9 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .section-23 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .section-24 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .highlights img,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .features img,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .branding img,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .context img,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .ig-slider,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .ig-slider-story,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .quads,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .w-slider,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .dc-elevate-case-hero,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .dc-elevate-case-hero img,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .dc-case-split__media,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .dc-case-media-grid img,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .image,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .image-no-bg-color,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .image-no-bg-color img,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .solo-img,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .personas,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .duel-image,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .duel-image-personas,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .duel-image-testing,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .img-with-text .image,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .img-with-text-analysis,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .img-with-text-stack,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .div-block-35,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .div-block-46,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .div-block-34,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot a.w-inline-block,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .w-lightbox {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .dc-elevate-case-hero {
  border-bottom: 0 !important;
  clip-path: none;
}

/* Pilot: no overview accent bar (paired with removed Problem & Context chip) */
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .overview::before,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot section.overview::before {
  display: none !important;
}

/* Pilot: plain title — no flash tile, extrusion shadows, or Mobile App chip */
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .heading-7,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot h1.heading-7 {
  text-shadow: none !important;
}

html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .heading-7 .dc-p5-letter {
  color: var(--p5-text) !important;
  text-shadow: none !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
  transform: none !important;
}

html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .heading-7 .dc-p5-letter--flash {
  background: transparent !important;
  color: var(--p5-text) !important;
  text-shadow: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  transform: none !important;
}

html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .text-block-57 {
  display: none !important;
}

/* Pilot: drop overview title block (heading + leftover chip) */
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .overview > .heading,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot section.overview > .heading,
html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .overview .heading-7 {
  display: none !important;
}

/* Pilot mobile: remove decorative slash lines + collapse oversized break gaps */
@media (max-width: 767px) {
  html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .dc-p5-slash {
    display: none !important;
  }

  html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .overview-white-div > .break,
  html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .overview > .break,
  html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .overview .hero + .break,
  html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .overview .break {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .overview-break {
    border: 0 !important;
    border-top: 0 !important;
    height: 0.85rem !important;
    margin: 0 !important;
  }

  html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .overview .hero {
    margin-bottom: 1rem !important;
  }

  html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .overview-text {
    margin-top: 0.5rem !important;
    gap: 1rem !important;
    grid-row-gap: 1rem !important;
  }

  html.dc-elevate body.dc-elevate-case.dc-elevate-pilot .section-22 > .break {
    display: none !important;
    height: 0 !important;
  }
}

/* ========== Swol: kill elevate white/blue media chrome ========== */
html.dc-elevate body.dc-elevate-case.dc-elevate-swol img,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol video,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .w-background-video,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .hero,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .hero img,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .overview img,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .section-22 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .section-9 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .section-23 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .section-24 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .highlights img,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .features img,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .branding img,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .context img,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .ig-slider,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .ig-slider-story,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .quads,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .w-slider,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .dc-elevate-case-hero,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .dc-elevate-case-hero img,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .dc-case-split__media,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .dc-case-media-grid img,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .image,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .image-no-bg-color,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .image-no-bg-color img,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .solo-img,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .personas,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .duel-image,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .duel-image-personas,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .duel-image-testing,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .img-with-text .image,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .img-with-text-analysis,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .img-with-text-stack,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol a.w-inline-block,
html.dc-elevate body.dc-elevate-case.dc-elevate-swol .w-lightbox {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

html.dc-elevate body.dc-elevate-case.dc-elevate-swol .dc-elevate-case-hero {
  border-bottom: 0 !important;
  clip-path: none;
}

/* ========== LG: kill elevate white/blue media chrome (pics + carousels) ========== */
html.dc-elevate body.dc-elevate-case.dc-elevate-lg img,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg video,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .w-background-video,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .hero,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .hero img,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .overview img,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .section-22 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .section-9 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .section-23 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .section-24 img,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .highlights img,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .features img,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .branding img,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .context img,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .ig-slider,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .ig-slider-story,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .ig-slider img,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .quads,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .w-slider,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .w-slide,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .slider-5-copy,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .dc-elevate-case-hero,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .dc-elevate-case-hero img,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .dc-case-split__media,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .dc-case-media-grid img,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .image,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .image-no-bg-color,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .image-no-bg-color img,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .solo-img,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .personas,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .duel-image,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .duel-image-personas,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .duel-image-testing,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .img-with-text .image,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .img-with-text-analysis,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .img-with-text-stack,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg a.w-inline-block,
html.dc-elevate body.dc-elevate-case.dc-elevate-lg .w-lightbox {
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
}

html.dc-elevate body.dc-elevate-case.dc-elevate-lg .dc-elevate-case-hero {
  border-bottom: 0 !important;
  clip-path: none;
}
