/* CoderLyft Premium Case Study Detail — page-scoped */

.csp-page {
  --csp-navy: #071a2d;
  --csp-blue: #0b66c3;
  --csp-electric: #2f7dff;
  --csp-purple: #7c3aed;
  --csp-muted: #5a7086;
  --csp-line: #e4ebf2;
  --csp-soft: #f4f7fb;
  --csp-pale: #eef3f8;
  --csp-max: 1240px;
  background: #fff;
  color: var(--csp-navy);
}

.csp-page main,
.csp-page main * {
  font-family: "Outfit", "Outfit Placeholder", sans-serif !important;
}

.csp-wrap {
  width: min(var(--csp-max), calc(100% - 40px));
  margin-inline: auto;
}

.csp-kicker {
  margin: 0 0 10px;
  color: var(--csp-blue);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.csp-kicker-light {
  color: #9bc7ff;
}

.csp-heading {
  margin: 0 0 16px;
  color: var(--csp-navy);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  font-weight: 700 !important;
  letter-spacing: -.035em;
  line-height: 1.15;
}

.csp-heading-light {
  color: #fff;
}

.csp-lead {
  margin: 0 0 18px;
  color: #4a6075;
  font-size: clamp(1.02rem, 1.4vw, 1.12rem);
  line-height: 1.75;
  max-width: 68ch;
}

.csp-lead-light {
  color: rgba(230, 241, 255, 0.82);
}

.csp-text-link {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  color: var(--csp-blue);
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
}

.csp-text-link:hover {
  color: var(--csp-navy);
}

.csp-section {
  padding: clamp(48px, 6vw, 72px) 0;
}

.csp-section-white {
  background: #fff;
}

.csp-section-pale {
  background: var(--csp-pale);
}

.csp-section-navy {
  background:
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(47, 125, 255, .22), transparent 55%),
    linear-gradient(160deg, #04192c 0%, #071c3c 48%, #001018 100%);
  color: #fff;
}

/* Hero split */
.csp-hero {
  padding: 132px 0 40px;
  background: #fff;
}

.csp-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
  color: #7d90a3;
  font-size: .86rem;
  font-weight: 600;
}

.csp-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.csp-breadcrumb a:hover,
.csp-breadcrumb strong {
  color: var(--csp-navy);
}

.csp-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.csp-eyebrow {
  margin: 0 0 12px;
  color: var(--csp-blue);
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.csp-hero h1 {
  margin: 0 0 14px;
  color: var(--csp-navy);
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 700 !important;
  letter-spacing: -.04em;
  line-height: 1.1;
}

.csp-hero-summary {
  margin: 0 0 18px;
  color: #4a6075;
  font-size: clamp(1.02rem, 1.5vw, 1.14rem);
  line-height: 1.72;
  max-width: 58ch;
}

.csp-hero-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.csp-hero-labels li {
  padding: 6px 12px;
  border: 1px solid var(--csp-line);
  border-radius: 999px;
  background: var(--csp-soft);
  color: var(--csp-muted);
  font-size: .82rem;
  font-weight: 600;
}

.csp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.csp-hero-media .cs-visual {
  border-radius: 18px;
  overflow: hidden;
}

/* Facts strip */
.csp-facts {
  padding: 0 0 24px;
  background: #fff;
  border-bottom: 1px solid var(--csp-line);
}

.csp-facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
}

.csp-fact {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid var(--csp-line);
  border-radius: 12px;
  background: var(--csp-soft);
}

.csp-fact dt {
  margin: 0 0 4px;
  color: var(--csp-muted);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.csp-fact dd {
  margin: 0;
  color: var(--csp-navy);
  font-size: .92rem;
  font-weight: 600;
  line-height: 1.45;
}

/* Sticky nav */
.csp-nav {
  position: sticky;
  top: 72px;
  z-index: 20;
  padding: 10px 0;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--csp-line);
  backdrop-filter: blur(10px);
}

.csp-nav-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.csp-nav-track::-webkit-scrollbar {
  display: none;
}

.csp-nav-link {
  flex: 0 0 auto;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--csp-muted);
  font-size: .88rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s, background .2s, border-color .2s;
}

.csp-nav-link:hover {
  color: var(--csp-navy);
}

.csp-nav-link.is-active {
  border-color: var(--csp-line);
  background: var(--csp-soft);
  color: var(--csp-navy);
}

/* Transformation */
.csp-transformation-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.csp-transformation-grid li {
  padding: 20px;
  border: 1px solid var(--csp-line);
  border-radius: 16px;
  background: #fff;
}

.csp-transformation-grid h3 {
  margin: 0 0 8px;
  color: var(--csp-navy);
  font-size: 1rem;
  font-weight: 700 !important;
  line-height: 1.35;
}

.csp-transformation-grid p {
  margin: 0;
  color: #4a6075;
  font-size: .94rem;
  line-height: 1.65;
}

/* Editorial overview */
.csp-editorial {
  display: grid;
  gap: 18px;
}

.csp-prose p {
  margin: 0 0 14px;
  color: #4a6075;
  font-size: 1.04rem;
  line-height: 1.78;
  max-width: 72ch;
}

.csp-highlight {
  margin: 8px 0 0;
  padding: 20px 22px;
  border-left: 4px solid var(--csp-electric);
  border-radius: 0 14px 14px 0;
  background: #fff;
}

.csp-highlight p {
  margin: 0;
  color: var(--csp-navy);
  font-size: 1.06rem;
  font-weight: 600;
  line-height: 1.65;
}

.csp-callout {
  margin: 0 0 24px;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--csp-soft);
  color: var(--csp-navy);
  font-size: 1.04rem;
  font-weight: 500;
  line-height: 1.65;
  max-width: 68ch;
}

/* Challenge flow */
.csp-challenge-flow {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.csp-challenge-flow li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--csp-line);
  border-radius: 16px;
  background: #fff;
}

.csp-stage-num {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--csp-soft);
  color: var(--csp-blue);
  font-size: .95rem;
  font-weight: 800;
}

.csp-challenge-flow h3 {
  margin: 0 0 6px;
  color: var(--csp-navy);
  font-size: 1.05rem;
  font-weight: 700 !important;
}

.csp-challenge-flow p {
  margin: 0 0 8px;
  color: #4a6075;
  line-height: 1.65;
}

.csp-stage-actor {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--csp-pale);
  color: var(--csp-muted);
  font-size: .78rem;
  font-weight: 700;
}

/* Architecture diagram */
.csp-architecture {
  margin-top: 28px;
}

.csp-arch-label {
  margin: 0 0 14px;
  color: var(--csp-muted);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.csp-section-navy .csp-arch-label {
  color: rgba(200, 220, 245, 0.72);
}

.csp-section-navy .csp-arch-layer {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}

.csp-section-navy .csp-arch-layer.is-active {
  border-color: rgba(125, 211, 252, 0.45);
  background: rgba(47, 125, 255, 0.18);
}

.csp-section-navy .csp-arch-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
}

.csp-section-navy .csp-arch-panel h3,
.csp-section-navy .csp-arch-panel p,
.csp-section-navy .csp-arch-items li {
  color: rgba(230, 241, 255, 0.9);
}

.csp-arch-layout {
  display: grid;
  grid-template-columns: minmax(220px, .85fr) minmax(0, 1.15fr);
  gap: 18px;
  align-items: start;
}

.csp-arch-layers {
  display: grid;
  gap: 10px;
}

.csp-arch-layer {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 16px;
  border: 1px solid var(--csp-line);
  border-radius: 14px;
  background: #fff;
  color: var(--csp-navy);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}

.csp-arch-layer:hover {
  border-color: #b8d4f5;
}

.csp-arch-layer.is-active {
  border-color: var(--csp-electric);
  box-shadow: 0 8px 24px rgba(47, 125, 255, .12);
}

.csp-arch-layer-title {
  font-size: .94rem;
  font-weight: 700;
}

.csp-arch-layer-count {
  color: var(--csp-muted);
  font-size: .78rem;
  font-weight: 600;
}

.csp-arch-panels {
  min-height: 220px;
}

.csp-arch-panel {
  padding: 24px;
  border: 1px solid var(--csp-line);
  border-radius: 18px;
  background: #fff;
}

.csp-arch-panel[hidden] {
  display: none;
}

.csp-arch-panel h3 {
  margin: 0 0 10px;
  color: var(--csp-navy);
  font-size: 1.15rem;
  font-weight: 700 !important;
}

.csp-arch-panel p {
  margin: 0 0 16px;
  color: #4a6075;
  line-height: 1.7;
}

.csp-arch-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.csp-arch-items li {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--csp-soft);
  color: var(--csp-navy);
  font-size: .84rem;
  font-weight: 600;
}

/* Product modules */
.csp-modules {
  display: grid;
  gap: 0;
  margin-top: 28px;
}

.csp-module {
  padding: clamp(32px, 4vw, 48px) 0;
  border-top: 1px solid var(--csp-line);
}

.csp-module-alt {
  background: var(--csp-soft);
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
}

.csp-module-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
}

.csp-module:has(.csp-module-media) .csp-module-inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .95fr);
  align-items: center;
}

.csp-module-num {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--csp-blue);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.csp-module-copy h3 {
  margin: 0 0 14px;
  color: var(--csp-navy);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700 !important;
  line-height: 1.25;
}

.csp-module-copy p {
  margin: 0 0 12px;
  color: #4a6075;
  line-height: 1.68;
}

.csp-module-label {
  margin: 14px 0 4px !important;
  color: var(--csp-muted) !important;
  font-size: .74rem !important;
  font-weight: 800 !important;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.csp-module-flow {
  padding: 12px 14px !important;
  border-radius: 10px;
  background: var(--csp-pale);
  color: var(--csp-navy) !important;
  font-size: .92rem !important;
  font-weight: 600;
}

.csp-module-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.csp-module-features li {
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--csp-line);
  color: var(--csp-navy);
  font-size: .82rem;
  font-weight: 600;
}

.csp-module-alt .csp-module-features li {
  background: #fff;
}

.csp-module-disclaimer {
  margin-top: 12px !important;
  color: var(--csp-muted) !important;
}

.csp-module-media,
.csp-final-media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--csp-line);
  background: #fff;
}

.csp-module-media img,
.csp-final-media img {
  display: block;
  width: 100%;
  height: auto;
}

.csp-module-media figcaption {
  padding: 10px 14px;
  color: var(--csp-muted);
  font-size: .78rem;
  font-weight: 600;
}

/* Walkthrough */
.csp-walkthrough-list {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.csp-walkthrough-list li {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--csp-line);
  border-radius: 14px;
  background: #fff;
}

.csp-walkthrough-list span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--csp-pale);
  color: var(--csp-blue);
  font-weight: 800;
}

.csp-walkthrough-list h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 700 !important;
}

.csp-walkthrough-list p {
  margin: 0;
  color: #4a6075;
  line-height: 1.65;
}

/* Design principles */
.csp-principles-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.csp-principles-grid li {
  padding: 20px;
  border: 1px solid var(--csp-line);
  border-radius: 16px;
  background: var(--csp-soft);
}

.csp-principles-grid h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 700 !important;
}

.csp-principles-grid p {
  margin: 0;
  color: #4a6075;
  line-height: 1.65;
}

/* Delivery journey */
.csp-delivery-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.csp-delivery-track li {
  padding: 16px;
  border: 1px solid var(--csp-line);
  border-radius: 14px;
  background: #fff;
}

.csp-delivery-track strong {
  display: block;
  margin-bottom: 6px;
  color: var(--csp-blue);
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.csp-delivery-track span {
  color: #4a6075;
  font-size: .92rem;
  line-height: 1.55;
}

/* Technology */
.csp-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.csp-tech-group {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .04);
}

.csp-tech-group h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.csp-tech-group ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.csp-tech-group li {
  padding: 12px 0;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.csp-tech-group li:first-child {
  border-top: 0;
  padding-top: 0;
}

.csp-tech-group strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: .96rem;
}

.csp-tech-group p {
  margin: 0;
  color: rgba(220, 234, 250, .72);
  font-size: .9rem;
  line-height: 1.6;
}

/* Impact comparison */
.csp-verified-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.csp-verified-metrics li {
  padding: 18px;
  border: 1px solid var(--csp-line);
  border-radius: 14px;
  background: var(--csp-soft);
}

.csp-verified-metrics strong {
  display: block;
  margin-bottom: 4px;
  color: var(--csp-navy);
  font-size: 1.35rem;
  font-weight: 800;
}

.csp-verified-metrics span {
  display: block;
  color: #4a6075;
  font-size: .92rem;
}

.csp-verified-metrics em {
  display: block;
  margin-top: 4px;
  color: var(--csp-muted);
  font-size: .78rem;
  font-style: normal;
}

.csp-impact-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.csp-impact-col {
  padding: 22px;
  border-radius: 16px;
}

.csp-impact-before {
  border: 1px solid var(--csp-line);
  background: #fff;
}

.csp-impact-after {
  border: 1px solid rgba(47, 125, 255, .25);
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}

.csp-impact-col h3 {
  margin: 0 0 12px;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.csp-impact-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.csp-impact-col li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 18px;
  color: #4a6075;
  line-height: 1.6;
}

.csp-impact-before li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c5d3e0;
}

.csp-impact-after li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--csp-electric);
}

.csp-capabilities {
  margin: 0;
  padding: 0;
  list-style: none;
}

.csp-capabilities li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 22px;
  color: #4a6075;
  line-height: 1.65;
}

.csp-capabilities li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--csp-electric);
}

/* Final result */
.csp-final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(260px, .95fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: center;
}

.csp-final-statements {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.csp-final-statements li {
  position: relative;
  margin: 0 0 10px;
  padding-left: 22px;
  color: #4a6075;
  line-height: 1.65;
}

.csp-final-statements li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--csp-electric);
}

/* Testimonial */
.csp-quote {
  margin: 0;
  padding: 24px;
  border-left: 4px solid var(--csp-electric);
  border-radius: 0 16px 16px 0;
  background: var(--csp-soft);
}

.csp-quote p {
  margin: 0 0 12px;
  color: var(--csp-navy);
  font-size: 1.1rem;
  line-height: 1.72;
}

.csp-quote cite {
  font-style: normal;
  font-weight: 700;
}

.csp-quote span {
  display: block;
  margin-top: 4px;
  color: var(--csp-muted);
  font-size: .9rem;
}

/* Related */
.csp-related-header {
  margin-bottom: 24px;
}

.csp-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

/* CTA */
.csp-cta {
  padding: 56px 0 72px;
  background:
    radial-gradient(ellipse 60% 80% at 10% 0%, rgba(47, 125, 255, .18), transparent 55%),
    linear-gradient(160deg, #04192c 0%, #071c3c 48%, #001018 100%);
  color: #fff;
}

.csp-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.csp-cta h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700 !important;
  letter-spacing: -.03em;
}

.csp-cta p {
  margin: 0;
  color: rgba(220, 234, 250, .78);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 56ch;
}

.csp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.csp-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 11px 18px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 12px;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
}

.csp-btn-secondary:hover {
  background: rgba(255, 255, 255, .08);
}

.csp-cta .button-primary {
  background: #fff !important;
  color: var(--csp-navy) !important;
  border: 0 !important;
}

.csp-cta .button-primary:hover {
  background: #e8f1ff !important;
}

/* Responsive */
@media (max-width: 1100px) {
  .csp-hero-grid,
  .csp-arch-layout,
  .csp-final-grid,
  .csp-module:has(.csp-module-media) .csp-module-inner,
  .csp-cta-inner {
    grid-template-columns: 1fr;
  }

  .csp-facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .csp-transformation-grid,
  .csp-delivery-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .csp-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .csp-nav {
    top: 64px;
  }

  .csp-facts-grid,
  .csp-transformation-grid,
  .csp-principles-grid,
  .csp-tech-grid,
  .csp-impact-compare,
  .csp-verified-metrics,
  .csp-delivery-track {
    grid-template-columns: 1fr;
  }

  .csp-hero-actions .cs-btn,
  .csp-hero-actions .csp-text-link,
  .csp-cta-actions .cs-btn,
  .csp-cta-actions .csp-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .csp-nav-link,
  .csp-arch-layer {
    transition: none !important;
  }
}
