/* Global reset to prevent page-level horizontal scroll */
html,
body {
  overflow-x: hidden !important;
  max-width: 100% !important;
}

/* ============================================
   Airtel Thanks Case Study — Page-Specific CSS
   ============================================ */

/* Page layout specific rules */
/* iPhone 17 Pro scrollable mockup */
.iphone-mockup-wrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 2rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-bottom: 1rem;
  scroll-padding-left: 1.5rem;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .iphone-mockup-wrap {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    -webkit-overflow-scrolling: touch;
  }
}

.iphone-mockup-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Reduced size for the side-by-side mockups */
.iphone-mockup-wrap .iphone-mockup-frame {
  width: 295px;
  height: 640px;
  border-radius: 48px;
  padding: 11px;
}

.iphone-mockup-wrap .iphone-mockup-frame::before {
  border-radius: 48px;
}

.iphone-mockup-wrap .iphone-mockup-screen {
  border-radius: 38px;
}

.iphone-mockup-wrap .iphone-mockup-island {
  width: 90px;
  height: 24px;
  top: 16px;
  border-radius: 14px;
}

.iphone-mockup-wrap .iphone-mockup-navbar {
  left: 11px;
  right: 11px;
  bottom: 11px;
  border-bottom-left-radius: 38px;
  border-bottom-right-radius: 38px;
  background: #ffffff;
}

.iphone-mockup-wrap .iphone-mockup-home-indicator {
  bottom: 17px;
  width: 100px;
  height: 4px;
}

.iphone-mockup-frame {
  position: relative;
  width: 420px;
  height: 912px;
  background: linear-gradient(145deg, #3a3a3d, #131315 60%, #3a3a3d);
  border-radius: 69px;
  padding: 15px;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.06) inset,
    0 45px 90px rgba(0, 0, 0, 0.55),
    0 15px 30px rgba(0, 0, 0, 0.4);
}

.iphone-mockup-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 69px;
  padding: 3px;
  background: linear-gradient(160deg, #5a5a5e, #1a1a1c 40%, #4a4a4e 70%, #1a1a1c);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.iphone-mockup-screen {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 56px;
  overflow: hidden;
}

.iphone-mockup-screen-scroll {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.iphone-mockup-screen-scroll::-webkit-scrollbar {
  display: none;
}

.iphone-mockup-screen-scroll img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.iphone-mockup-island {
  position: absolute;
  top: 27px;
  left: 50%;
  transform: translateX(-50%);
  width: 132px;
  height: 39px;
  background: #000;
  border-radius: 21px;
  z-index: 10;
  pointer-events: none;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.iphone-mockup-navbar {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
  overflow: hidden;
  border-bottom-left-radius: 56px;
  border-bottom-right-radius: 56px;
  z-index: 9;
  pointer-events: none;
  background: #ffffff;
}

.iphone-mockup-navbar img {
  display: block;
  width: 100%;
  height: auto;
}

.iphone-mockup-home-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 144px;
  height: 6px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 3px;
  z-index: 10;
  pointer-events: none;
}

.iphone-mockup-frame .btn {
  position: absolute;
  background: linear-gradient(90deg, #4a4a4e, #222224);
  border-radius: 3px;
}

.iphone-mockup-frame .btn-action {
  left: -4px;
  top: 140px;
  width: 4px;
  height: 35px;
}

.iphone-mockup-frame .btn-volume-up {
  left: -4px;
  top: 198px;
  width: 4px;
  height: 59px;
}

.iphone-mockup-frame .btn-volume-down {
  left: -4px;
  top: 269px;
  width: 4px;
  height: 59px;
}

.iphone-mockup-frame .btn-power {
  right: -4px;
  top: 215px;
  width: 4px;
  height: 96px;
}

.iphone-mockup-caption {
  text-align: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
  margin-top: 0.75rem;
}

/* Row of scaled-down iPhone mockups - Spans 100vw Full Viewport Width */
.iphone-mockup-row {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  width: 100vw !important;
  max-width: 100vw !important;
  position: relative !important;
  left: calc(50% - 50vw) !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  overflow-x: auto;
  padding: 1.5rem 4vw 2.5rem;
  -webkit-overflow-scrolling: touch;
  scroll-padding-inline: 2vw;
  scroll-snap-type: x mandatory;
  box-sizing: border-box;
}

.iphone-mockup-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.iphone-mockup-mini {
  position: relative;
  flex: 0 0 auto;
  width: 218px;
  height: 474px;
  overflow: hidden;
}

.iphone-mockup-item-caption {
  margin-top: 0.75rem;
  max-width: 218px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.75);
}

.iphone-mockup-mini .iphone-mockup-frame {
  transform: scale(0.519);
  transform-origin: top left;
}

.iphone-mockup-mini .iphone-mockup-screen img[data-lightbox] {
  cursor: zoom-in;
}

.iphone-mockup-expand-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.9);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 5;
}

.iphone-mockup-expand-hint svg {
  flex-shrink: 0;
}

.iphone-mockup-mini:hover .iphone-mockup-expand-hint {
  opacity: 1;
}

@media (hover: none),
(max-width: 768px) {
  .iphone-mockup-expand-hint {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

.iphone-mockup-wrap .iphone-mockup-frame.iphone-mockup-frame--recharge {
  --mockup-w: min(295px, calc(100vw - 32px));
  --mockup-pad: 11px;
  --img-ratio: calc(1789 / 869);
  width: var(--mockup-w);
  height: calc((var(--mockup-w) - (var(--mockup-pad) * 2)) * var(--img-ratio) + (var(--mockup-pad) * 2));
  border-radius: 48px;
  padding: var(--mockup-pad);
  transform: none !important;
}

.iphone-mockup-wrap .iphone-mockup-col .iphone-mockup-mini {
  width: min(295px, calc(100vw - 32px));
  height: auto;
  overflow: visible;
  border-radius: 48px;
}

.iphone-mockup-wrap .iphone-mockup-col .iphone-mockup-mini .iphone-mockup-expand-hint {
  border-radius: 38px;
  inset: 11px;
}

.lightbox-iphone-frame {
  --lb-frame-h: 912px;
  --lb-aspect: calc(420 / 912);
  --lb-w: min(88vw, calc(80vh * var(--lb-aspect)), 420px);
  position: relative;
  overflow: hidden;
  width: var(--lb-w);
  height: auto;
  aspect-ratio: var(--lb-aspect);
  border-radius: 24px;
  transform: scale(0.95);
  transition: transform 0.3s var(--ease-out-expo);
}

@media (max-width: 640px) {
  .lightbox-iphone-frame {
    --lb-w: min(72vw, calc(68vh * var(--lb-aspect)), 320px) !important;
  }
}

#lightbox.open .lightbox-iphone-frame {
  transform: scale(1);
}

.lightbox-iphone-frame .iphone-mockup-frame {
  height: var(--lb-frame-h);
  transform-origin: top left;
  transform: scale(calc(var(--lb-w) / 420px));
  box-shadow: none !important;
}

/* Ensure lightbox iPhone screen fills height seamlessly with matching white background */
.lightbox-iphone-frame .iphone-mockup-screen {
  background: #ffffff !important;
}

.lightbox-iphone-frame .iphone-mockup-screen-scroll {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #ffffff !important;
}

.lightbox-iphone-frame #lightbox-iphone-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: top center !important;
  display: block !important;
}

#lightbox[hidden],
.lightbox-iphone-frame[hidden] {
  display: none;
}

@media (max-width: 1400px) {
  .iphone-mockup-mini {
    width: 193px !important;
    height: 420px !important;
  }

  .iphone-mockup-mini .iphone-mockup-frame {
    transform: scale(0.46) !important;
  }

  .iphone-mockup-item-caption {
    max-width: 193px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 1100px) {
  .iphone-mockup-row {
    justify-content: flex-start !important;
    padding-left: 4vw !important;
    padding-right: 4vw !important;
  }

  .iphone-mockup-mini {
    width: 185px !important;
    height: 401px !important;
  }

  .iphone-mockup-mini .iphone-mockup-frame {
    transform: scale(0.44) !important;
  }

  .iphone-mockup-item-caption {
    max-width: 185px !important;
    font-size: 13px !important;
  }
}

@media (max-width: 768px) {
  .iphone-mockup-mini {
    width: 175px !important;
    height: 380px !important;
  }

  .iphone-mockup-mini .iphone-mockup-frame {
    transform: scale(0.416) !important;
  }

  .iphone-mockup-item-caption {
    max-width: 175px !important;
    font-size: 12.5px !important;
  }

  .iphone-mockup-row {
    gap: 1.15rem !important;
    padding-left: 4vw !important;
    padding-right: 4vw !important;
  }
}

@media (max-width: 480px) {
  .iphone-mockup-mini {
    width: 160px !important;
    height: 347px !important;
  }

  .iphone-mockup-mini .iphone-mockup-frame {
    transform: scale(0.381) !important;
  }

  .iphone-mockup-item-caption {
    max-width: 160px !important;
    font-size: 12px !important;
  }

  .iphone-mockup-row {
    gap: 1rem !important;
    padding-left: 4vw !important;
    padding-right: 4vw !important;
  }
}

/* Two-up feature highlight grid */
.cs-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.cs-feature-item figure {
  margin: 0;
  overflow: hidden;
  border-radius: 10px;
  background: var(--bg-surface, rgba(255, 255, 255, 0.03));
  cursor: zoom-in;
}

.cs-feature-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: top;
}

.cs-feature-item h3 {
  margin: 1.25rem 0 0.4rem;
}

.cs-feature-item p {
  color: var(--text-tertiary);
  line-height: 1.5;
}

@media (max-width: 720px) {
  .cs-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* Design Elements — filterable/tabbed showcase */
.cs-elements-wrap {
  width: 100%;
}

.cs-elements-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.cs-elements-tab {
  font: inherit;
  font-size: var(--fs-small, 0.9rem);
  font-weight: 600;
  color: var(--text-secondary, rgba(255, 255, 255, 0.65));
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}

.cs-elements-tab:hover {
  color: var(--text-primary);
  border-color: rgba(255, 255, 255, 0.35);
}

.cs-elements-tab.active {
  color: var(--bg, #0a0a0a);
  background: var(--text-primary, #fff);
  border-color: var(--text-primary, #fff);
}

.cs-elements-panel {
  display: flex;
  flex-direction: column;
}

.cs-elements-panel[hidden] {
  display: none;
}

.cs-element-card {
  padding: 1.75rem 0;
}

.cs-elements-panel .cs-element-card:first-child {
  padding-top: 0.25rem;
}

.cs-elements-panel .cs-element-card:not(:first-child) {
  border-top: 1px solid var(--border);
}

.cs-element-card h3 {
  margin-bottom: 0.5rem;
}

.cs-element-card p {
  font-size: var(--fs-small, 0.9rem);
  color: var(--text-secondary, rgba(255, 255, 255, 0.65));
  line-height: 1.55;
  margin-bottom: 1rem;
  max-width: 640px;
}

.cs-element-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

/* Image & Grid Spacing Fixes */
.cs-before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 2rem !important;
}

figure.cs-image-item,
.cs-image-item {
  margin-bottom: 2rem !important;
}

/* Intuitive UX Strategy Mapping Grid */
.cs-strategy-mapping {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}

.cs-strategy-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.cs-strategy-card:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

.cs-strategy-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
}

.cs-strategy-head {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cs-strategy-phase {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
}

.cs-strategy-friction {
  font-family: var(--font-mono, monospace);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
  text-transform: uppercase;
}

.cs-strategy-principle {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.cs-strategy-impl {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 900px) {
  .cs-strategy-mapping {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.cs-metric-sub {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  color: #ff3b30;
  letter-spacing: 0.02em;
  margin-top: 0.1rem;
}

/* Minimal & Borderless Metrics Row (Reference Design Match) */
.cs-metrics-row {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 1.5rem !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin-top: 2rem !important;
  margin-bottom: 2.5rem !important;
  overflow: visible !important;
}

@media (max-width: 768px) {
  .cs-metrics-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem !important;
  }
}

.cs-metric {
  flex: 1 1 auto !important;
  min-width: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-right: none !important;
  background: transparent !important;
  box-shadow: none !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 0 !important;
}

.cs-metric-value {
  font-family: 'Gilroy ExtraBold', 'Plus Jakarta Sans', var(--font-sans, sans-serif), sans-serif !important;
  font-size: clamp(2.4rem, 4.5vw, 3.25rem) !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  color: #0f172a !important;
  letter-spacing: -0.03em !important;
  margin: 0 0 0.45rem 0 !important;
}

body.dark-theme .cs-metric-value,
body:not(.cs-light-theme):not(.light-theme) .cs-metric-value {
  color: #ffffff !important;
}

#sec-outcomes .cs-metric-value {
  color: #10b981 !important;
}

body.cs-light-theme #sec-outcomes .cs-metric-value {
  color: #059669 !important;
}

.cs-metric-label {
  font-family: var(--font-mono, monospace), sans-serif !important;
  font-size: 0.75rem !important;
  font-weight: 600 !important;
  color: #64748b !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  margin: 0 0 0.35rem 0 !important;
}

body.dark-theme .cs-metric-label,
body:not(.cs-light-theme):not(.light-theme) .cs-metric-label {
  color: rgba(255, 255, 255, 0.6) !important;
}

.cs-metric-sub {
  font-family: 'Plus Jakarta Sans', var(--font-sans, sans-serif), sans-serif !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
  color: #64748b !important;
  margin: 0 !important;
}

body.dark-theme .cs-metric-sub,
body:not(.cs-light-theme):not(.light-theme) .cs-metric-sub {
  color: rgba(255, 255, 255, 0.5) !important;
}

@media (max-width: 640px) {
  .cs-metrics-row {
    gap: 1.75rem !important;
  }
}

/* Background Comparison Card Component */
.cs-bg-comparison-wrap {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  margin: 2.5rem 0;
  width: 100%;
  box-sizing: border-box;
}

.cs-bg-comp-card {
  flex: 1;
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.cs-bg-comp-card--post {
  background: linear-gradient(135deg, rgba(40, 10, 15, 0.6) 0%, rgba(22, 8, 10, 0.85) 100%);
  border: 1px solid rgba(235, 50, 35, 0.3);
  border-radius: 0;
}

.cs-bg-comp-header {
  font-family: var(--font-mono, monospace);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-tertiary, rgba(255, 255, 255, 0.5));
  margin-bottom: 1.25rem;
}

.cs-bg-comp-card--post .cs-bg-comp-header {
  color: #ff3b30;
}

.cs-bg-comp-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: auto;
}

.cs-bg-comp-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cs-bg-comp-table tr:last-child {
  border-bottom: none;
}

.cs-bg-comp-table td {
  padding: 0.8rem 0;
  font-size: 0.95rem;
}

.cs-bg-comp-label {
  color: var(--text-secondary, rgba(255, 255, 255, 0.65));
  text-align: left;
}

.cs-bg-comp-val {
  color: var(--text-primary, #ffffff);
  font-weight: 600;
  font-family: var(--font-mono, monospace);
  text-align: right;
  white-space: nowrap;
}

.cs-bg-comp-arrow {
  color: #ff3b30;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.5rem;
}

@media (max-width: 768px) {
  .cs-bg-comparison-wrap {
    flex-direction: column;
    padding: 0;
    width: 100%;
    gap: 1rem;
  }

  .cs-bg-comp-card {
    width: 100%;
    padding: 1rem 1.25rem;
    box-sizing: border-box;
  }

  .cs-bg-comp-arrow {
    transform: rotate(90deg);
    padding: 0.25rem 0;
  }
}

/* Tiered Base Breakdown Component */
.cs-tiered-base-wrap {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0;
  background: transparent !important;
  border: none !important;
}

.cs-tiered-base-header {
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cs-tiered-bar {
  display: flex;
  width: 100%;
  height: 38px;
  border-radius: 0;
  overflow: hidden;
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.cs-tiered-segment {
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 0 0.5rem;
  box-sizing: border-box;
  transition: opacity 0.2s ease;
}

.cs-tiered-segment--silver {
  width: 44%;
  background: linear-gradient(90deg, #334155 0%, #64748b 100%);
  color: #ffffff;
  border-right: 2px solid #0b0d14;
}

.cs-tiered-segment--gold {
  width: 50%;
  background: linear-gradient(90deg, #b45309 0%, #f59e0b 100%);
  color: #ffffff;
  border-right: 2px solid #0b0d14;
}

.cs-tiered-segment--platinum {
  width: 6%;
  background: linear-gradient(90deg, #0284c7 0%, #38bdf8 100%);
  color: #ffffff;
}

.cs-tier-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cs-tier-card {
  background: rgba(15, 18, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.25s ease;
}

.cs-tier-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
}

.cs-tier-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.cs-tier-badge {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 0;
  font-weight: 600;
}

.cs-tier-badge--silver {
  background: rgba(148, 163, 184, 0.15);
  color: #cbd5e1;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.cs-tier-badge--gold {
  background: rgba(245, 158, 11, 0.18);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.cs-tier-badge--platinum {
  background: rgba(56, 189, 248, 0.18);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.35);
}

.cs-tier-card-title {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
}

.cs-tier-card-desc {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.25rem;
}

.cs-tier-card-sub {
  font-size: 0.8rem;
  font-family: var(--font-mono, monospace);
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 1.25rem;
}

.cs-tier-card-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: auto;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.cs-tier-metric-block {
  display: flex;
  flex-direction: column;
}

.cs-tier-metric-val {
  font-family: var(--font-mono, monospace);
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.cs-tier-metric-lbl {
  font-family: var(--font-mono, monospace);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  margin-top: 0.15rem;
  white-space: nowrap;
}

.cs-tier-smartphone-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.65rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  margin-bottom: 0.85rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.7rem;
}

.cs-tier-phone-lbl {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}

.cs-tier-phone-val {
  color: #ffffff;
  font-weight: 700;
}

/* Funnel Pipeline Component */
.cs-awesome-funnel {
  margin: 3.5rem 0;
  background: rgba(11, 13, 20, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.25rem;
  position: relative;
}

.cs-funnel-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  flex-wrap: wrap;
  gap: 1rem;
}

.cs-funnel-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: #38bdf8;
  font-weight: 700;
  display: block;
  margin-bottom: 0.35rem;
}

.cs-funnel-main-title {
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

.cs-funnel-sub-lede {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 680px;
  line-height: 1.5;
}

.cs-funnel-stat-pill {
  background: rgba(255, 59, 48, 0.1);
  border: 1px solid rgba(255, 59, 48, 0.25);
  padding: 0.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.cs-pill-label {
  font-family: var(--font-mono, monospace);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.cs-pill-value {
  font-family: var(--font-mono, monospace);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ff3b30;
}

.cs-pipeline-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.cs-pipeline-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0;
  padding: 1.35rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.cs-card-hdr-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cs-card-step {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  display: block;
  margin-bottom: 0.2rem;
}

.cs-card-title {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.cs-card-badge {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.2rem 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.75);
  border-radius: 0;
}

.cs-card-meta-note {
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.cs-card-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.cs-hmw-glass-banner {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: stretch;
  margin-top: 1rem;
}

.cs-hmw-accent-bar {
  width: 4px;
  background: linear-gradient(180deg, #38bdf8 0%, #ff3b30 100%);
  flex-shrink: 0;
}

.cs-hmw-content {
  padding: 1.25rem 1.5rem;
}

.cs-hmw-pill {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: #38bdf8;
  font-weight: 700;
  display: block;
  margin-bottom: 0.4rem;
}

.cs-hmw-statement {
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.cs-hmw-statement strong {
  color: #ffffff;
  font-weight: 700;
}

.cs-scope-note {
  border-left: 2px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.015);
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary, rgba(255, 255, 255, 0.7));
  margin-top: 0.5rem;
}

.cs-scope-note strong {
  color: var(--text-primary, #ffffff);
  font-weight: 600;
}

/* Constraints Grid */
.cs-constraints-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.cs-constraints-grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2.5rem;
}

.cs-constraint-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 4px solid #00ef87;
  border-radius: 12px;
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.cs-constraint-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
  border-left-color: #00ef87;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.cs-constraint-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #00ef87;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 0.35rem;
}

.cs-constraint-title {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.3;
  margin: 0 0 0.5rem 0;
}

.cs-constraint-desc {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}

.cs-constraint-strategy {
  background: rgba(0, 239, 135, 0.06);
  border-left: 3px solid #00ef87;
  padding: 1rem 1.25rem;
  margin-top: 0.5rem;
  border-radius: 0 8px 8px 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cs-strategy-lbl {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #00ef87;
  display: block;
  font-weight: 800;
  text-transform: uppercase;
}

.cs-strategy-val {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.5;
}

/* Journey Transformation Component */
.cs-journey-comparison {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
}

.cs-journey-panel {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 1.85rem;
  display: flex;
  flex-direction: column;
}

.cs-journey-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cs-journey-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  display: block;
  margin-bottom: 0.35rem;
}

.cs-journey-title {
  font-family: var(--font-primary);
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
}

.cs-journey-pill {
  font-family: var(--font-mono, monospace);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.7rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border-radius: 0;
}

.cs-journey-steps {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cs-jstep {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.15rem;
  border-radius: 0;
}

.cs-jstep-num {
  font-family: var(--font-mono, monospace);
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  opacity: 0.85;
  flex-shrink: 0;
}

.cs-jstep-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cs-jstep-title {
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.cs-jstep-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.cs-jstep-badge {
  font-family: var(--font-mono, monospace);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.85);
  border-left: 2px solid rgba(255, 255, 255, 0.3);
  padding-left: 0.4rem;
  margin-top: 0.15rem;
}

.cs-jstep-arrow {
  align-self: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 1.1rem;
  margin: -0.2rem 0;
}

.cs-journey-outcome {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cs-outcome-lbl {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  display: block;
  margin-bottom: 0.35rem;
}

.cs-journey-outcome p {
  font-size: 0.92rem;
  color: #ffffff;
  line-height: 1.55;
  font-weight: 500;
}

/* Before and After Image Grid Component */
.cs-ba-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cs-ba-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-transform: uppercase;
}

.cs-ba-tag--before {
  color: rgba(255, 255, 255, 0.45);
}

.cs-ba-tag--after {
  color: rgba(255, 255, 255, 0.85);
}

/* Outcomes Section Component */
.cs-outcomes-2col-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.cs-outcomes-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.cs-outcomes-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
}

.cs-outcomes-col-hdr {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 700;
  display: block;
  padding-bottom: 0.4rem;
  margin-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cs-outcome-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  width: 100%;
}

.cs-outcome-stat-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cs-outcome-stat-num {
  font-family: var(--font-primary, -apple-system, sans-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.6rem);
  font-weight: 800;
  color: #10b981;
  line-height: 1.1;
  letter-spacing: -0.02em;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.3rem;
}

.cs-outcome-stat-sub {
  font-size: 0.55em;
  font-weight: 700;
  opacity: 0.85;
}

.cs-outcome-stat-lbl {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
  font-weight: 500;
}

.cs-outcomes-footnote {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);

  padding: 1.25rem 1.5rem;
  margin-top: 1.5rem;
}

.cs-outcomes-footnote-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
  display: block;
  margin-bottom: 0.4rem;
}

.cs-outcomes-footnote p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}

/* Impact Metric Stat Callout Box */
.cs-result-impact-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.cs-result-stat-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 1.25rem;
  min-width: 170px;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.cs-result-stat-val {
  font-family: var(--font-primary);
  font-size: 2.2rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.cs-result-stat-lbl {
  font-family: var(--font-mono, monospace);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.cs-result-stat-sub {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Analytics Dashboard UI Component */
.cs-analytics-app {
  background: #0b0d14;
  border: 1px solid #1e2338;
  border-radius: 8px;
  overflow: hidden;
  margin: 2.5rem 0;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.7);
  font-family: var(--font-primary, sans-serif);
}

.cs-analytics-topbar {
  background: #121522;
  border-bottom: 1px solid #1e2338;
  padding: 0.75rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cs-analytics-chrome-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cs-analytics-dots {
  display: flex;
  gap: 6px;
}

.cs-analytics-dot {
  width: 100px;
  height: 10px;
  border-radius: 50%;
}

.cs-analytics-dot--red {
  background: #ff5f56;
}

.cs-analytics-dot--yellow {
  background: #ffbd2e;
}

.cs-analytics-dot--green {
  background: #27c93f;
}

.cs-analytics-app-title {
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.cs-analytics-app-title strong {
  color: #f8fafc;
  font-weight: 600;
}

.cs-analytics-badge-live {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.25);
  padding: 0.15rem 0.55rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.cs-analytics-badge-live::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
}

.cs-analytics-filterbar {
  background: #0e101a;
  border-bottom: 1px solid #1a1d2e;
  padding: 0.6rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  overflow-x: auto;
  white-space: nowrap;
}

.cs-analytics-filter-label {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  color: #64748b;
  text-transform: uppercase;
  margin-right: 0.25rem;
}

.cs-analytics-pill {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  color: #cbd5e1;
  background: #161927;
  border: 1px solid #252b42;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cs-analytics-pill strong {
  color: #38bdf8;
}

.cs-analytics-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cs-analytics-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  border-bottom: 1px solid #1a1d2e;
  padding-bottom: 1.25rem;
}

.cs-analytics-stat-card {
  background: #111420;
  border: 1px solid #1e2338;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cs-analytics-stat-label {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.cs-analytics-stat-val {
  font-family: var(--font-mono, monospace);
  font-size: 1.45rem;
  font-weight: 700;
  color: #f8fafc;
}

.cs-analytics-stat-sub {
  font-family: var(--font-mono, monospace);
  font-size: 0.7rem;
  color: #64748b;
}

.cs-analytics-chart-container {
  background: #0e101a;
  border: 1px solid #1a1d2e;
  padding: 1.5rem 1rem 1rem;
  position: relative;
}

.cs-analytics-chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding: 0 0.5rem;
}

.cs-analytics-chart-title {
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.cs-analytics-funnel-grid {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
  height: 220px;
  position: relative;
}

.cs-analytics-col {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cs-analytics-bar-wrapper {
  width: 100%;
  max-width: 96px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.cs-analytics-bar-val-badge {
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 700;
  color: #f8fafc;
  margin-bottom: 0.35rem;
}

.cs-analytics-bar-fill {
  width: 100%;
  background: linear-gradient(180deg, #38bdf8 0%, #0284c7 100%);
  border-radius: 3px 3px 0 0;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
}

.cs-analytics-bar-fill--alert {
  background: linear-gradient(180deg, #ef4444 0%, #b91c1c 100%);
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.cs-analytics-col-label {
  margin-top: 0.75rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.7rem;
  color: #94a3b8;
  text-align: center;
  line-height: 1.3;
}

.cs-analytics-drop-badge {
  position: absolute;
  top: 40%;
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  font-weight: 600;
  color: #f87171;
  background: #2a1215;
  border: 1px solid #7f1d1d;
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
  white-space: nowrap;
  z-index: 3;
}

.cs-analytics-table-container {
  overflow-x: auto;
}

.cs-analytics-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono, monospace);
  font-size: 0.8rem;
}

.cs-analytics-table th {
  background: #111420;
  text-align: left;
  padding: 0.65rem 0.85rem;
  color: #64748b;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #1e2338;
}

.cs-analytics-table td {
  padding: 0.7rem 0.85rem;
  color: #cbd5e1;
  border-bottom: 1px solid #161927;
}

.cs-analytics-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.cs-analytics-event-code {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.1);
  padding: 0.15rem 0.4rem;
  font-size: 0.72rem;
}

/* Global Section QuickNav */
section.cs-section {
  scroll-margin-top: 140px;
}

.cs-section-quicknav-container {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  max-width: 100%;
  margin: 1.5rem 0 1rem;
  padding: 0;
  background: rgba(11, 13, 20, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

nav.nav-bar {
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
}

nav.nav-bar.header-replaced,
html body nav.nav-bar.header-replaced,
body.cs-light-theme nav.nav-bar.header-replaced,
body.light-theme nav.nav-bar.header-replaced,
body.dark-theme nav.nav-bar.header-replaced {
  transform: translateY(-100%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
  display: none !important;
}

.cs-section-quicknav-container {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem 0 2rem 0;
  border-top: none !important;

  box-shadow: none !important;
}

body.cs-light-theme .cs-section-quicknav-container,
body.light-theme .cs-section-quicknav-container {
  border-top: none !important;

  box-shadow: none !important;
}

.cs-section-quicknav-container.is-stuck {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 10000 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: 56px !important;
  min-height: 56px !important;
  background: rgba(11, 13, 20, 0.96) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-top: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
  box-shadow: none !important;
  transform: none;
}

body.cs-light-theme .cs-section-quicknav-container.is-stuck,
body.light-theme .cs-section-quicknav-container.is-stuck {
  background: rgba(255, 255, 255, 0.96) !important;
  border-top: none !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12) !important;
  box-shadow: none !important;
}

@media (min-width: 1025px) {
  .cs-section-quicknav-container.is-stuck {
    height: 80px !important;
    min-height: 80px !important;
  }

  .cs-section-quicknav-container.is-stuck .cs-section-quicknav {
    height: 80px !important;
    min-height: 80px !important;
  }
}

.cs-section-quicknav {
  pointer-events: auto;
  width: 100%;
  max-width: 1200px !important;
  margin: 0 auto !important;
  min-height: 56px;
  height: 56px;

  display: flex;
  align-items: center;
  justify-content: safe center !important;
  gap: 0.5rem;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  white-space: nowrap !important;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box !important;
  padding: 0 1.5rem !important;
}

@media (max-width: 768px) {
  .cs-section-quicknav {
    justify-content: flex-start !important;
    padding: 0 1rem !important;
  }
}

.cs-section-quicknav::-webkit-scrollbar {
  display: none;
}

.cs-quicknav-link {
  font-family: 'Gilroy Light', var(--font-sans, "Space Grotesk", system-ui, -apple-system, sans-serif) !important;
  font-size: 1rem !important;
  font-weight: 300 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  color: rgba(255, 255, 255, 0.65) !important;
  background: transparent;
  border: 1px solid transparent;
  padding: 0.48rem 1.05rem !important;
  border-radius: 0px !important;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
  cursor: pointer;
  line-height: 1.2;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.35rem !important;
}

.cs-quicknav-link svg {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
  stroke-width: 2px !important;
}

body.cs-light-theme .cs-quicknav-link,
body.light-theme .cs-quicknav-link {
  color: rgba(15, 23, 42, 0.65) !important;
}

.cs-quicknav-link:hover {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.2) !important;
}

body.cs-light-theme .cs-quicknav-link:hover,
body.light-theme .cs-quicknav-link:hover {
  color: #0f172a !important;
  background: rgba(15, 23, 42, 0.06) !important;
  border-color: rgba(15, 23, 42, 0.12) !important;
}

.cs-quicknav-link.active {
  font-family: 'Gilroy Light', var(--font-sans, "Space Grotesk", system-ui, -apple-system, sans-serif) !important;
  color: #0f172a !important;
  background: #f6f6f6 !important;
  border-color: rgba(15, 23, 42, 0.15) !important;
  font-weight: 400 !important;
}

@media (max-width: 900px) {
  .cs-constraints-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .cs-journey-comparison {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .cs-tier-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {

  .nav-bar .nav-download-btn,
  .nav-actions .nav-download-btn {
    display: none !important;
  }

  .nav-menu-toggle {
    display: flex !important;
  }

  .cs-hero-title {
    font-size: clamp(1.8rem, 6.5vw, 2.8rem) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 1rem !important;
  }

  .cs-section-title {
    font-size: clamp(1.3rem, 5vw, 1.75rem) !important;
    line-height: 1.25 !important;
    margin-bottom: 1.25rem !important;
  }

  section.cs-section h2,
  .cs-section h2,
  #sec-problem h2 {
    font-size: 1.25rem !important;
    line-height: 1.35 !important;
  }

  .cs-quicknav-link {
    font-size: 0.68rem !important;
    padding: 0.35rem 0.65rem !important;
  }

  .cs-decision {
    flex-direction: column !important;
    gap: 0.5rem !important;
    padding: 1.25rem 0 !important;
  }

  .cs-decision-num {
    padding-top: 0 !important;
    margin-bottom: 0.25rem !important;
    width: 100% !important;
  }

  .cs-decision-body {
    width: 100% !important;
  }

  .cs-outcomes-2col-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .cs-outcome-stats-row {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .cs-outcome-stat-num {
    font-size: 2.2rem;
  }

  .cs-before-after-grid {
    grid-template-columns: 1fr;
  }

  .cs-result-impact-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .cs-analytics-summary-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .cs-awesome-funnel {
    padding: 1.25rem 1rem;
  }

  .cs-card-metric {
    font-size: 1.7rem;
  }
}

@media (max-width: 480px) {

  section.cs-section h2,
  .cs-section h2,
  #sec-problem h2 {
    font-size: 1.15rem !important;
    line-height: 1.35 !important;
  }
}

/* ============================================
   LIGHT THEME OVERRIDES FOR AIRTEL CASE STUDY
   ============================================ */
body.cs-light-theme {
  background-color: #ffffff !important;
  color: #0f172a !important;
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-elevated: #f1f5f9;
  --bg-glass: rgba(255, 255, 255, 0.94);
  --text-primary: #0f172a;
  --text-secondary: #334155;
  --text-tertiary: #64748b;
  --border: rgba(15, 23, 42, 0.12);
  --border-active: rgba(15, 23, 42, 0.3);
}

body.cs-light-theme main,
body.cs-light-theme article.cs-shell {
  background-color: #ffffff !important;
  color: #0f172a !important;
}

body.cs-light-theme nav.nav-bar {
  background: rgba(255, 255, 255, 0.92) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1) !important;
}

body.cs-light-theme nav.nav-bar.scrolled {
  background: rgba(255, 255, 255, 0.94) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.12) !important;
}

body.cs-light-theme .nav-logo {
  color: #0f172a !important;
}

body.cs-light-theme .nav-toggle span {
  background-color: #0f172a !important;
}

body.cs-light-theme .cs-section-quicknav-container {
  background: rgba(255, 255, 255, 0.95) !important;

}

body.cs-light-theme .cs-quicknav-link {
  color: #475569 !important;
  font-weight: 300 !important;
}

body.cs-light-theme .cs-quicknav-link:hover {
  color: #0f172a !important;
  background: rgba(15, 23, 42, 0.06) !important;
}

body.cs-light-theme .cs-quicknav-link.active {
  font-family: 'Gilroy Light', var(--font-sans, "Space Grotesk", system-ui, -apple-system, sans-serif) !important;
  color: #0f172a !important;
  background: #f6f6f6 !important;
  border-color: rgba(15, 23, 42, 0.15) !important;
  font-weight: 400 !important;
}

body.cs-light-theme .cs-hero-metric {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04) !important;
}

body.cs-light-theme .cs-metric-value {
  color: #0f172a !important;
}

body.cs-light-theme .cs-metric-label {
  color: #475569 !important;
}

body.cs-light-theme .cs-hero-title,
.cs-hero-title {
  color: var(--text-primary) !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  animation: none !important;
}

body.cs-light-theme .cs-section-title,
body.cs-light-theme h1,
body.cs-light-theme h2,
body.cs-light-theme h3,
body.cs-light-theme h4 {
  color: #0f172a !important;
}

.cs-hero-hook {
  font-family: 'Gilroy Light', 'Plus Jakarta Sans', var(--font-sans, sans-serif), sans-serif !important;
  font-style: normal !important;
}

body.cs-light-theme p,
body.cs-light-theme .cs-brief-lede,
body.cs-light-theme .cs-hero-hook {
  color: #334155 !important;
}

body.cs-light-theme .cs-section-num {
  color: #64748b !important;
}

body.cs-light-theme .cs-marquee {
  border-top: 1px solid rgba(15, 23, 42, 0.1) !important;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1) !important;
  background: #ffffff !important;
}

body.cs-light-theme .cs-marquee-item {
  color: #475569 !important;
}

body.cs-light-theme .cs-constraint-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.09) !important;
  border-left: 4px solid #10b981 !important;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04) !important;
}

body.cs-light-theme .cs-constraint-card:hover {
  border-color: rgba(15, 23, 42, 0.18) !important;
  border-left-color: #059669 !important;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08) !important;
}

body.cs-light-theme .cs-constraint-tag {
  color: #059669 !important;
}

body.cs-light-theme .cs-constraint-title {
  color: #0f172a !important;
}

body.cs-light-theme .cs-constraint-desc {
  color: #334155 !important;
}

body.cs-light-theme .cs-constraint-strategy {
  background: #f8fafc !important;
  border-left: 3px solid #10b981 !important;
}

body.cs-light-theme .cs-strategy-lbl {
  color: #059669 !important;
}

body.cs-light-theme .cs-strategy-val {
  color: #0f172a !important;
}

body.cs-light-theme .cs-outcomes-panel,
body.cs-light-theme .cs-tier-card,
body.cs-light-theme .cs-bg-comp-card,
body.cs-light-theme .cs-decision-card,
body.cs-light-theme .cs-result-stat-box,
body.cs-light-theme .cs-outcomes-footnote,
body.cs-light-theme .cs-scope-note,
body.cs-light-theme .cs-callout-card,
body.cs-light-theme .cs-strategy-card,
body.cs-light-theme .cs-value-item {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;

  color: #1e293b !important;
}

body.cs-light-theme .cs-strategy-card::before {
  background: rgba(15, 23, 42, 0.12) !important;
}

body.cs-light-theme .cs-outcomes-footnote-tag {
  color: #64748b !important;
}

body.cs-light-theme .cs-outcomes-footnote p {
  color: #475569 !important;
}

body.cs-light-theme .cs-outcomes-footnote {}

body.cs-light-theme .cs-strategy-phase {
  color: #64748b !important;
}

body.cs-light-theme .cs-strategy-impl {
  color: #475569 !important;
}

body.cs-light-theme .cs-outcome-stat-num,
body.cs-light-theme .cs-outcome-stat-sub {
  color: #059669 !important;
}

body.cs-light-theme .cs-result-stat-val,
body.cs-light-theme .cs-tier-card-title,
body.cs-light-theme .cs-tier-metric-val {
  color: #0f172a !important;
}

body.cs-light-theme .cs-outcome-stat-lbl,
body.cs-light-theme .cs-result-stat-lbl,
body.cs-light-theme .cs-tier-card-desc,
body.cs-light-theme .cs-tier-metric-lbl {
  color: #475569 !important;
}

body.cs-light-theme .cs-analytics-table th {
  background: #f1f5f9 !important;
  color: #475569 !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

body.cs-light-theme .cs-analytics-table td {
  color: #1e293b !important;
  border-bottom: 1px solid #e2e8f0 !important;
}

body.cs-light-theme .cs-analytics-event-code {
  background: #e0f2fe !important;
  color: #0369a1 !important;
}

body.cs-light-theme .cs-decision {
  border-bottom: 1px solid rgba(15, 23, 42, 0.1) !important;
}

body.cs-light-theme .cs-decision-num {
  color: #64748b !important;
}

body.cs-light-theme .cs-card-title,
body.cs-light-theme .cs-tiered-base-header,
body.cs-light-theme .cs-tier-card-title,
body.cs-light-theme .cs-metric-sub,
body.cs-light-theme .cs-bg-comp-title,
body.cs-light-theme .cs-decision-card h4,
body.cs-light-theme .cs-scope-note strong,
body.cs-light-theme .cs-outcomes-col-hdr,
body.cs-light-theme .cs-result-stat-lbl,
body.cs-light-theme .cs-tier-card-sub,
body.cs-light-theme .cs-col-label,
body.cs-light-theme .cs-eyebrow-logo+span,
body.cs-light-theme .cs-dot {
  color: #0f172a !important;
}

body.cs-light-theme .cs-analytics-wrap,
body.cs-light-theme .cs-analytics-card,
body.cs-light-theme .cs-analytics-table-wrap,
body.cs-light-theme .cs-scope-note,
body.cs-light-theme .cs-image-item,
body.cs-light-theme .cs-bg-comp-card,
body.cs-light-theme .cs-tiered-bar {
  background: #f8fafc !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
}

body.cs-light-theme .cs-tiered-base-wrap {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

body.cs-light-theme .cs-tier-card--silver {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
}

body.cs-light-theme .cs-tier-card--gold {
  background: #fffbeb !important;
  border: 1px solid #fde68a !important;
}

body.cs-light-theme .cs-tier-card--platinum {
  background: #f8fafc !important;
  border: 1px solid #cbd5e1 !important;
}

body.cs-light-theme .cs-awesome-funnel {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.15) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04) !important;
}

body.cs-light-theme .cs-funnel-header-row {
  border-bottom: 1px solid rgba(15, 23, 42, 0.1) !important;
}

body.cs-light-theme .cs-funnel-tag {
  color: #0284c7 !important;
}

body.cs-light-theme .cs-funnel-main-title {
  color: #0f172a !important;
}

body.cs-light-theme .cs-funnel-sub-lede {
  color: #475569 !important;
}

body.cs-light-theme .cs-funnel-stat-pill {
  background: #fef2f2 !important;
  border: 1px solid #fca5a5 !important;
}

body.cs-light-theme .cs-pill-label {
  color: #991b1b !important;
}

body.cs-light-theme .cs-pill-value {
  color: #dc2626 !important;
}

body.cs-light-theme .cs-pipeline-card {
  background: #f8fafc !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
}

body.cs-light-theme .cs-card-step {
  color: #64748b !important;
}

body.cs-light-theme .cs-card-badge {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.15) !important;
  color: #334155 !important;
}

body.cs-light-theme .cs-card-meta-note {
  color: #475569 !important;
}

body.cs-light-theme .cs-card-desc {
  color: #334155 !important;
}

body.cs-light-theme .cs-constraint-tag {
  color: #64748b !important;
}

body.cs-light-theme .cs-constraint-strategy {
  border-top: 1px solid rgba(15, 23, 42, 0.1) !important;
  color: #0f172a !important;
}

body.cs-light-theme .cs-journey-col {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

body.cs-light-theme .cs-journey-tag {
  background: #f1f5f9 !important;
  border: 1px solid rgba(15, 23, 42, 0.15) !important;
  color: #334155 !important;
}

body.cs-light-theme .cs-jstep {
  background: #f8fafc !important;
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
}

body.cs-light-theme .cs-jstep-num {
  color: #0f172a !important;
}

body.cs-light-theme .cs-jstep-title {
  color: #0f172a !important;
}

body.cs-light-theme .cs-jstep-desc {
  color: #334155 !important;
}

body.cs-light-theme .cs-jstep-badge {
  color: #475569 !important;
  border-left-color: rgba(15, 23, 42, 0.3) !important;
}

body.cs-light-theme .cs-jstep-arrow {
  color: #64748b !important;
}

body.cs-light-theme .cs-journey-outcome {
  border-top: 1px solid rgba(15, 23, 42, 0.1) !important;
}

body.cs-light-theme .cs-outcome-lbl {
  color: #64748b !important;
}

body.cs-light-theme .cs-journey-outcome p {
  color: #0f172a !important;
}

body.cs-light-theme .iphone-mockup-frame {
  box-shadow: none !important;
}

body.cs-light-theme .iphone-mockup-mini {
  overflow: visible !important;
}

body.cs-light-theme .iphone-mockup-mini .iphone-mockup-frame {
  box-shadow: none !important;
}

body.cs-light-theme .iphone-mockup-item-caption {
  color: #475569 !important;
  font-weight: 600 !important;
}

body.cs-light-theme .iphone-mockup-expand-hint {
  background: rgba(15, 23, 42, 0.45) !important;
  color: #ffffff !important;
}

body.cs-light-theme figure.cs-image-item img {
  border-color: rgba(15, 23, 42, 0.1) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05) !important;
}

body.cs-light-theme .sur-footer {
  background: #f8fafc !important;
  border-top: 1px solid rgba(15, 23, 42, 0.1) !important;
  color: #475569 !important;
}

body.cs-light-theme .sur-footer-mid a,
body.cs-light-theme .sur-footer-mid span {
  color: #475569 !important;
}

/* Video Showcase Component Styles */
.cs-showcase-video {
  padding: 0;
}

.cs-video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
}

.cs-video-frame video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
  transform: translate(-50%, -50%);
}

.cs-video-controls {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.cs-video-btn {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.15s ease, transform 0.15s ease;
}

.cs-video-btn:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: scale(1.06);
}

.cs-video-btn:active {
  transform: scale(0.96);
}

.cs-video-dots {
  position: absolute;
  left: 14px;
  bottom: 16px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.cs-video-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.cs-video-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.cs-video-dot.active {
  background: #fff;
  transform: scale(1.15);
}

/* ============================================================
   UNIVERSAL LIGHTBOX MODAL SYSTEM (.lb & .lightbox)
   Fixes cross-browser (Chrome/Safari) modal overlay positioning
   ============================================================ */
.lb,
.lightbox,
#lightbox {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  z-index: 999999 !important;
  background: rgba(8, 9, 12, 0.96) !important;
  backdrop-filter: blur(16px) !important;
  -webkit-backdrop-filter: blur(16px) !important;
  transform: translateZ(0) !important;
  -webkit-transform: translateZ(0) !important;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  box-sizing: border-box;
}

.lb.open,
.lightbox.open,
#lightbox.open {
  display: flex !important;
}

.lb figure,
.lightbox figure,
#lightbox figure {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 92vw;
  max-height: 88vh;
  margin: 0;
}

.lb img,
.lightbox img,
#lightbox img {
  max-width: 90vw !important;
  max-height: 78vh !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.7);
}

.lb figcaption,
.lightbox figcaption,
#lightbox figcaption {
  margin-top: 1rem;
  text-align: center;
  font-family: var(--font-mono, monospace);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  max-width: 70ch;
  line-height: 1.6;
}

.lb-x,
.lightbox__close,
#lbClose {
  position: absolute !important;
  top: clamp(16px, 3vw, 28px) !important;
  right: clamp(16px, 3vw, 28px) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  font-size: 1.25rem !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 1000000 !important;
  transition: all 0.2s ease !important;
}

.lb-x:hover,
.lightbox__close:hover,
#lbClose:hover {
  background: rgba(255, 255, 255, 0.25) !important;
  border-color: #ffffff !important;
  transform: scale(1.05);
}

/* ============================================
   Strategic Points Grid Component
   ============================================ */
.cs-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin: 2.5rem 0 3.5rem 0;
  position: relative;
  width: 100%;
}

.cs-points-grid--4col {
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 2.25rem !important;
}

/* 1 Image / Solo Column Grid */
.cs-points-grid--solo,
.cs-points-grid--1col,
.cs-grid-solo {
  grid-template-columns: 1fr !important;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.cs-points-grid--solo .cs-points-col::after,
.cs-points-grid--1col .cs-points-col::after,
.cs-grid-solo .cs-points-col::after {
  display: none !important;
}

/* 2 Images / Pair Column Grid */
.cs-points-grid--pair,
.cs-points-grid--2col,
.cs-grid-pair {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 2.5rem !important;
}

.cs-points-grid--pair .cs-points-col:nth-child(2n)::after,
.cs-points-grid--2col .cs-points-col:nth-child(2n)::after,
.cs-grid-pair .cs-points-col:nth-child(2n)::after {
  display: none !important;
}

/* 3 Images / Trio Column Grid */
.cs-points-grid--trio,
.cs-points-grid--3col,
.cs-grid-trio {
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2.25rem !important;
}

.cs-points-grid--trio .cs-points-col:nth-child(3n)::after,
.cs-points-grid--3col .cs-points-col:nth-child(3n)::after,
.cs-grid-trio .cs-points-col:nth-child(3n)::after {
  display: none !important;
}

@media (max-width: 1024px) {
  .cs-points-grid--4col {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2rem !important;
  }

  .cs-points-grid--4col .cs-points-col:nth-child(2)::after {
    display: none !important;
  }
}

@media (max-width: 768px) {

  .cs-points-grid--pair,
  .cs-points-grid--2col,
  .cs-grid-pair,
  .cs-points-grid--trio,
  .cs-points-grid--3col,
  .cs-grid-trio {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
  }

  .cs-points-grid--pair .cs-points-col::after,
  .cs-points-grid--2col .cs-points-col::after,
  .cs-grid-pair .cs-points-col::after,
  .cs-points-grid--trio .cs-points-col::after,
  .cs-points-grid--3col .cs-points-col::after,
  .cs-grid-trio .cs-points-col::after {
    display: none !important;
  }
}

.cs-points-col {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
}

/* Vertical dashed dividers between columns */
.cs-points-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1.125rem;
  top: 0;
  bottom: 0;
  width: 1px;
  border-right: 1px dashed rgba(255, 255, 255, 0.15) !important;
}

body.cs-light-theme .cs-points-col:not(:last-child)::after {
  border-right: 1px dashed rgba(15, 23, 42, 0.15) !important;
}

.cs-point-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cs-point-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(146% 220.53% at -24% 130%, #00ef87 41.79%, rgb(49, 79, 66) 75.76%);
  color: #000000;
  flex-shrink: 0;
}

body.cs-light-theme .cs-point-icon-wrapper {
  background: radial-gradient(146% 220.53% at -24% 130%, #00ef87 41.79%, rgb(32, 141, 93) 75.76%);
  color: #ffffff;
  border: none;
}

/* Scoped Grey & Dark Grey Gradient Icon Wrappers for My Role Section */
#sec-role .cs-point-icon-wrapper {
  background: radial-gradient(146% 220.53% at -24% 130%, #71717a 0%, #27272a 75.76%) !important;
  color: #ffffff !important;
  border: none !important;
}

body.cs-light-theme #sec-role .cs-point-icon-wrapper,
body.light-theme #sec-role .cs-point-icon-wrapper {
  background: radial-gradient(146% 220.53% at -24% 130%, #64748b 0%, #1e293b 75.76%) !important;
  color: #ffffff !important;
  border: none !important;
}

.cs-point-icon-wrapper svg {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2.5px;
}

.cs-point-title {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif !important;
  font-size: 1.12rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  margin: 0 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
}

body.cs-light-theme .cs-point-title {
  color: #0f172a !important;
}

.cs-point-desc {
  font-family: 'Gilroy Light', var(--font-sans, "Space Grotesk"), sans-serif !important;
  font-size: 0.88rem !important;
  line-height: 1.6 !important;
  color: rgba(255, 255, 255, 0.65) !important;
  margin: 0 !important;
}

body.cs-light-theme .cs-point-desc {
  color: #475569 !important;
}

/* Yellow Modifier for Constraints Section */
.cs-points-col--yellow .cs-point-icon-wrapper {
  background: radial-gradient(146% 220.53% at -24% 130%, #fde047 41.79%, #ca8a04 75.76%) !important;
  color: #000000 !important;
}

body.cs-light-theme .cs-points-col--yellow .cs-point-icon-wrapper {
  background: radial-gradient(146% 220.53% at -24% 130%, #fde047 41.79%, #ca8a04 75.76%) !important;
  color: #000000 !important;
}

.cs-points-col--yellow .cs-point-icon-wrapper svg {
  stroke: #000000 !important;
}

.cs-points-col--yellow .cs-finding-revelation-text {
  color: #fde047 !important;
}

body.cs-light-theme .cs-points-col--yellow .cs-finding-revelation-text {
  color: #d97706 !important;
}

/* Rose/Red Modifier for Rejected Ideas Section */
.cs-points-col--rose .cs-point-icon-wrapper {
  background: radial-gradient(146% 220.53% at -24% 130%, #fecdd3 41.79%, #e11d48 75.76%) !important;
  color: #ffffff !important;
}

body.cs-light-theme .cs-points-col--rose .cs-point-icon-wrapper,
body.light-theme .cs-points-col--rose .cs-point-icon-wrapper {
  background: radial-gradient(146% 220.53% at -24% 130%, #f43f5e 41.79%, #be123c 75.76%) !important;
  color: #ffffff !important;
}

.cs-points-col--rose .cs-point-icon-wrapper svg {
  stroke: #ffffff !important;
}

.cs-points-col--rose .cs-finding-revelation-text {
  color: #fb7185 !important;
}

body.cs-light-theme .cs-points-col--rose .cs-finding-revelation-text,
body.light-theme .cs-points-col--rose .cs-finding-revelation-text {
  color: #e11d48 !important;
}

/* Bottom-Aligned Strategy Takeaways inside Columns with Top Dashed Border */
.cs-strategy-bottom-aligned {
  margin-top: auto !important;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.18);
  font-size: 0.85rem !important;
  line-height: 1.45 !important;
}

body.cs-light-theme .cs-strategy-bottom-aligned {
  border-top: 1px dashed rgba(15, 23, 42, 0.15);
}

/* Image Placeholder Component */
.cs-img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  height: 140px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  font-family: var(--font-mono, monospace);
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.55);
  margin: 0.5rem 0;
  box-sizing: border-box;
  transition: all 0.25s ease;
}

.cs-img-placeholder:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
}

body.cs-light-theme .cs-img-placeholder,
body.light-theme .cs-img-placeholder {
  background: rgba(15, 23, 42, 0.03);
  border: 1px dashed rgba(15, 23, 42, 0.18);
  color: #64748b;
}

body.cs-light-theme .cs-img-placeholder:hover,
body.light-theme .cs-img-placeholder:hover {
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.3);
}

.cs-img-placeholder svg {
  opacity: 0.6;
}

/* Responsive adjustment */
@media (max-width: 900px) {
  .cs-points-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }

  .cs-points-col:not(:last-child)::after {
    display: none !important;
  }
}

/* ============================================
   Strategic Questions Metadata Grid Component
   ============================================ */
.cs-questions-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 0 0 1.5rem 0;
  width: 100%;
}

.cs-analytics-questions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2.5rem 0 3.5rem 0;
  width: 100%;
}

@media (max-width: 900px) {
  .cs-analytics-questions-grid {
    grid-template-columns: 1fr !important;
    gap: 2.25rem !important;
  }
}

.cs-qmeta-col {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

/* Vertical dividing lines between columns */
.cs-qmeta-col:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

body.cs-light-theme .cs-qmeta-col:not(:last-child)::after {
  background: rgba(15, 23, 42, 0.08);
}

.cs-qmeta-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cs-qmeta-line {
  width: 3px;
  height: 14px;
  border-radius: 99px;
  display: inline-block;
  flex-shrink: 0;
}

.cs-qmeta-line--1 {
  background: #00ef87 !important;
}

.cs-qmeta-line--2 {
  background: #ff2d55 !important;
}

.cs-qmeta-line--3 {
  background: #ffcc00 !important;
}

.cs-qmeta-line--4 {
  background: #00f0ff !important;
}

.cs-qmeta-label {
  font-family: var(--font-mono, monospace) !important;
  font-size: 0.72rem !important;
  letter-spacing: 0.08em !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.45) !important;
  text-transform: uppercase !important;
}

body.cs-light-theme .cs-qmeta-label {
  color: rgba(15, 23, 42, 0.5) !important;
}

.cs-qmeta-value {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif !important;
  font-size: 1.22rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.3 !important;
  margin: 0 !important;
}

body.cs-light-theme .cs-qmeta-value {
  color: #0f172a !important;
}

@media (max-width: 768px) {
  .cs-questions-meta-grid {
    grid-template-columns: 1fr !important;
    gap: 2.25rem !important;
  }

  .cs-qmeta-col:not(:last-child)::after {
    display: none !important;
  }
}

.cs-reframe-question-card {
  margin: 1.75rem 0 1.5rem 0;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

body.cs-light-theme .cs-reframe-question-card {
  background: transparent;
  border: none;
  box-shadow: none;
}

/* ============================================
   Tier Status Cards Grid Layout
   ============================================ */
.cs-tier-status-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 0 0 .5rem 0;
  width: 100%;
}

.cs-tier-status-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem 1.75rem;
  background: rgba(255, 255, 255, 0.02) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 0px !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-sizing: border-box;
}

.cs-tier-status-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
}

body.cs-light-theme .cs-tier-status-card {
  background: #ffffff !important;
  border: 1px solid rgba(15, 23, 42, 0.08) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
}

body.cs-light-theme .cs-tier-status-card:hover {
  border-color: rgba(15, 23, 42, 0.15) !important;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06) !important;
}

.cs-tier-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
}

.cs-tier-card-icon svg {
  width: 22px !important;
  height: 22px !important;
}

.cs-tier-card-icon svg:not([fill="currentColor"]) {
  stroke-width: 2px !important;
}

.cs-tier-card-icon--silver {
  background: rgba(148, 163, 184, 0.1) !important;
  color: #94a3b8 !important;
}

.cs-tier-card-icon--gold {
  background: rgba(234, 179, 8, 0.1) !important;
  color: #eab308 !important;
}

.cs-tier-card-icon--platinum {
  background: rgba(229, 229, 231, 0.1) !important;
  color: #cbd5e1 !important;
}

body.cs-light-theme .cs-tier-card-icon--platinum {
  background: rgba(51, 65, 85, 0.1) !important;
  color: #334155 !important;
}

.cs-tier-card-meta {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.cs-tier-card-lbl {
  font-family: var(--font-mono, monospace) !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  color: rgba(255, 255, 255, 0.45) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  display: flex !important;
  align-items: center !important;
  gap: 0.45rem !important;
}

body.cs-light-theme .cs-tier-card-lbl {
  color: #64748b !important;
}

.cs-tier-card-mini-tick {
  width: 13px !important;
  height: 13px !important;
  flex-shrink: 0 !important;
}

.cs-tier-card-mini-tick--silver {
  color: #94a3b8 !important;
}

.cs-tier-card-mini-tick--gold {
  color: #eab308 !important;
}

.cs-tier-card-mini-tick--platinum {
  color: #cbd5e1 !important;
}

body.cs-light-theme .cs-tier-card-mini-tick--platinum {
  color: #475569 !important;
}

.cs-tier-card-val {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif !important;
  font-size: 2.2rem !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  line-height: 1.1 !important;
  margin: 0 !important;
  letter-spacing: -0.02em !important;
}

body.cs-light-theme .cs-tier-card-val {
  color: #0f172a !important;
}

.cs-tier-card-sublbl {
  font-family: 'Gilroy Light', var(--font-sans, "Space Grotesk"), sans-serif !important;
  font-size: 0.88rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-top: 0.15rem !important;
}

body.cs-light-theme .cs-tier-card-sublbl {
  color: #475569 !important;
}

@media (max-width: 768px) {
  .cs-tier-status-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
}

/* ============================================
   Venn Diagram Component (Eligible vs Activations)
   ============================================ */
.cs-venn-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: 2.25rem;
  margin: 2.5rem 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}

body.cs-light-theme .cs-venn-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.cs-venn-header {
  margin-bottom: 1.75rem;
}

.cs-venn-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  color: #ff2d55;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 45, 85, 0.1);
  padding: 0.3rem 0.75rem;
  border-radius: 99px;
  border: 1px solid rgba(255, 45, 85, 0.2);
  margin-bottom: 0.85rem;
}

.cs-venn-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff2d55;
  box-shadow: 0 0 8px #ff2d55;
}

.cs-venn-title {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  letter-spacing: -0.01em;
}

body.cs-light-theme .cs-venn-title {
  color: #0f172a;
}

.cs-venn-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 780px;
}

body.cs-light-theme .cs-venn-desc {
  color: #475569;
}

.cs-venn-desc strong {
  color: #ffffff;
  font-weight: 700;
}

body.cs-light-theme .cs-venn-desc strong {
  color: #0f172a;
}

/* Diagram SVG Styling */
.cs-venn-diagram-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
  overflow: hidden;
}

.cs-venn-svg {
  width: 100%;
  max-width: 640px;
  height: auto;
  overflow: visible;
}

/* Circle styling - Dark theme default */
.cs-venn-circle-eligible {
  fill: url(#eligibleGradDark);
  stroke: #3b82f6;
  stroke-width: 1.8;
  transition: all 0.3s ease;
}

body.cs-light-theme .cs-venn-circle-eligible {
  fill: url(#eligibleGradLight);
  stroke: #2563eb;
}

.cs-venn-circle-active {
  fill: url(#activeGradDark);
  stroke: #ff2d55;
  stroke-width: 2.2;
  transition: all 0.3s ease;
}

body.cs-light-theme .cs-venn-circle-active {
  fill: url(#activeGradLight);
  stroke: #e11d48;
}

.cs-venn-pointer {
  stroke: rgba(255, 255, 255, 0.25);
}

body.cs-light-theme .cs-venn-pointer {
  stroke: rgba(15, 23, 42, 0.2);
}

.cs-venn-pointer-dot-eligible {
  fill: #3b82f6;
}

.cs-venn-pointer-dot-active {
  fill: #ff2d55;
}

.cs-venn-label-heading {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.cs-venn-lbl-eligible {
  fill: #60a5fa;
}

body.cs-light-theme .cs-venn-lbl-eligible {
  fill: #1d4ed8;
}

.cs-venn-lbl-active {
  fill: #ff2d55;
}

body.cs-light-theme .cs-venn-lbl-active {
  fill: #e11d48;
}

.cs-venn-label-sub {
  font-family: var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 12px;
  fill: rgba(255, 255, 255, 0.6);
}

body.cs-light-theme .cs-venn-label-sub {
  fill: #64748b;
}

.cs-venn-label-val {
  font-family: var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 13px;
  font-weight: 700;
  fill: #ff2d55;
}

body.cs-light-theme .cs-venn-label-val {
  fill: #e11d48;
}

.cs-venn-inner-tag {
  font-family: var(--font-mono, monospace);
  font-size: 11px;
  font-weight: 600;
  fill: rgba(255, 255, 255, 0.45);
}

body.cs-light-theme .cs-venn-inner-tag {
  fill: #64748b;
}

.cs-venn-inner-val {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 18px;
  font-weight: 800;
  fill: #ffffff;
  dominant-baseline: central;
}

body.cs-light-theme .cs-venn-inner-val {
  fill: #0f172a;
}

/* Metrics Grid Footer */
.cs-venn-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.cs-light-theme .cs-venn-stats-grid {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.cs-venn-stat-item {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 1.1rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.cs-venn-stat-item:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.12);
}

body.cs-light-theme .cs-venn-stat-item {
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.05);
}

body.cs-light-theme .cs-venn-stat-item:hover {
  border-color: rgba(15, 23, 42, 0.15);
}

.cs-venn-stat-item--highlight {
  background: rgba(255, 45, 85, 0.06);
  border-color: rgba(255, 45, 85, 0.2);
}

body.cs-light-theme .cs-venn-stat-item--highlight {
  background: rgba(255, 45, 85, 0.04);
  border-color: rgba(255, 45, 85, 0.2);
}

.cs-venn-stat-num {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 1.85rem;
  font-weight: 800;
  color: #3b82f6;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

body.cs-light-theme .cs-venn-stat-num {
  color: #2563eb;
}

.cs-venn-stat-num--active {
  color: #ff2d55 !important;
}

body.cs-light-theme .cs-venn-stat-num--active {
  color: #e11d48 !important;
}

.cs-venn-stat-num--gap {
  color: rgba(255, 255, 255, 0.6);
}

body.cs-light-theme .cs-venn-stat-num--gap {
  color: #64748b;
}

.cs-venn-stat-lbl {
  font-family: var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

body.cs-light-theme .cs-venn-stat-lbl {
  color: #0f172a;
}

.cs-venn-stat-sub {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.35;
}

body.cs-light-theme .cs-venn-stat-sub {
  color: #64748b;
}

@media (max-width: 768px) {
  .cs-venn-card {
    padding: 1.5rem;
  }

  .cs-venn-stats-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
}

/* ============================================
   Beyond the Funnel Grid Component
   ============================================ */
.cs-beyond-funnel-wrap {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.cs-light-theme .cs-beyond-funnel-wrap {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.cs-beyond-funnel-title {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.01em;
}

body.cs-light-theme .cs-beyond-funnel-title {
  color: #0f172a;
}

.cs-beyond-funnel-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
}

@media (max-width: 1024px) {
  .cs-beyond-funnel-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .cs-beyond-funnel-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.cs-bf-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

.cs-bf-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff2d55, #ff6b00);
  opacity: 0.85;
}

.cs-bf-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 45, 85, 0.3);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
}

body.cs-light-theme .cs-bf-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

body.cs-light-theme .cs-bf-card:hover {
  border-color: rgba(255, 45, 85, 0.3);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.cs-bf-num {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  color: #ff2d55;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

body.cs-light-theme .cs-bf-num {
  color: #e11d48;
}

.cs-bf-heading {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.6rem 0;
  line-height: 1.25;
}

body.cs-light-theme .cs-bf-heading {
  color: #0f172a;
}

.cs-bf-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

body.cs-light-theme .cs-bf-desc {
  color: #475569;
}

/* ============================================
   The Investigation & Decision Journey Flow
   ============================================ */
.cs-investigation-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff2d55;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 45, 85, 0.1);
  border: 1px solid rgba(255, 45, 85, 0.25);
  padding: 0.35rem 0.85rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}

body.cs-light-theme .cs-investigation-tag {
  color: #e11d48;
  background: rgba(225, 29, 72, 0.08);
  border-color: rgba(225, 29, 72, 0.2);
}

.cs-investigation-subhead {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0.5rem 0 1.25rem 0;
  line-height: 1.3;
}

body.cs-light-theme .cs-investigation-subhead {
  color: #0f172a;
}

/* Journey Flow Stepper */
.cs-journey-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  position: relative;
}

@media (max-width: 900px) {
  .cs-journey-flow-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

.cs-journey-step {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.25rem 1rem;
  position: relative;
  transition: all 0.25s ease;
}

body.cs-light-theme .cs-journey-step {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.cs-journey-step:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 45, 85, 0.3);
}

.cs-journey-step-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  color: #ff2d55;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}

body.cs-light-theme .cs-journey-step-tag {
  color: #e11d48;
}

.cs-journey-step-question {
  font-family: var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

body.cs-light-theme .cs-journey-step-question {
  color: #1e293b;
}

/* Research Questions Grid */
.cs-research-questions-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin: 1.75rem 0;
}

@media (max-width: 768px) {
  .cs-research-questions-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.cs-rq-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 1.1rem 1.25rem;
}

body.cs-light-theme .cs-rq-card {
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.cs-rq-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 45, 85, 0.15);
  color: #ff2d55;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

body.cs-light-theme .cs-rq-icon {
  background: rgba(225, 29, 72, 0.1);
  color: #e11d48;
}

.cs-rq-text {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

body.cs-light-theme .cs-rq-text {
  color: #334155;
}

/* Problem Reframing Highlight Box */
.cs-reframe-card {
  background: linear-gradient(135deg, rgba(255, 45, 85, 0.08), rgba(59, 130, 246, 0.05));
  border: 1px solid rgba(255, 45, 85, 0.25);
  border-radius: 18px;
  padding: 2.25rem;
  margin: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

body.cs-light-theme .cs-reframe-card {
  background: linear-gradient(135deg, rgba(255, 45, 85, 0.04), rgba(59, 130, 246, 0.03));
  border: 1px solid rgba(225, 29, 72, 0.2);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.cs-reframe-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .cs-reframe-comparison {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.cs-reframe-box {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cs-reframe-label {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cs-reframe-label--old {
  color: rgba(255, 255, 255, 0.5);
}

body.cs-light-theme .cs-reframe-label--old {
  color: #64748b;
}

.cs-reframe-label--new {
  color: #ff2d55;
}

body.cs-light-theme .cs-reframe-label--new {
  color: #e11d48;
}

.cs-reframe-val {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
  color: #ffffff;
}

body.cs-light-theme .cs-reframe-val {
  color: #0f172a;
}

/* ============================================
   Pyramid Structure Component (Decision Hierarchy)
   ============================================ */
.cs-pyramid-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  margin: 2.5rem 0;
  width: 100%;
}

.cs-pyramid-tier {
  display: flex;
  flex-direction: column;
  padding: 1.15rem 1.5rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.25s ease;
  position: relative;
  box-sizing: border-box;
  text-align: center;
}

body.cs-light-theme .cs-pyramid-tier {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.cs-pyramid-tier:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

body.cs-light-theme .cs-pyramid-tier:hover {
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

/* Pyramid Tier Widths (Top Apex to Bottom Base) */
.cs-pyramid-tier--1 {
  width: 56%;
  border-top: 2px solid #3b82f6;
}

.cs-pyramid-tier--2 {
  width: 67%;
  border-top: 2px solid #00f0ff;
}

.cs-pyramid-tier--3 {
  width: 78%;
  border-top: 2px solid #ffcc00;
}

.cs-pyramid-tier--4 {
  width: 89%;
  border-top: 2px solid #ff6b00;
}

.cs-pyramid-tier--5 {
  width: 100%;
  border-top: 2px solid #ff2d55;
  background: linear-gradient(135deg, rgba(255, 45, 85, 0.06), rgba(255, 255, 255, 0.03));
}

body.cs-light-theme .cs-pyramid-tier--5 {
  background: linear-gradient(135deg, rgba(255, 45, 85, 0.04), #ffffff);
}

.cs-pyramid-header-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.35rem;
  flex-wrap: wrap;
}

.cs-pyramid-badge {
  font-family: var(--font-mono, monospace);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 99px;
}

.cs-pyramid-tier--1 .cs-pyramid-badge {
  color: #60a5fa;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.cs-pyramid-tier--2 .cs-pyramid-badge {
  color: #00f0ff;
  background: rgba(0, 240, 255, 0.12);
  border: 1px solid rgba(0, 240, 255, 0.25);
}

.cs-pyramid-tier--3 .cs-pyramid-badge {
  color: #ffcc00;
  background: rgba(255, 204, 0, 0.12);
  border: 1px solid rgba(255, 204, 0, 0.25);
}

.cs-pyramid-tier--4 .cs-pyramid-badge {
  color: #ff6b00;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.25);
}

.cs-pyramid-tier--5 .cs-pyramid-badge {
  color: #ff2d55;
  background: rgba(255, 45, 85, 0.12);
  border: 1px solid rgba(255, 45, 85, 0.25);
}

.cs-pyramid-title {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
}

body.cs-light-theme .cs-pyramid-title {
  color: #0f172a;
}

.cs-pyramid-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 720px;
  align-self: center;
}

body.cs-light-theme .cs-pyramid-desc {
  color: #475569;
}

.cs-pyramid-arrow {
  color: rgba(255, 255, 255, 0.25);
  font-size: 1rem;
  margin: -0.2rem 0;
}

body.cs-light-theme .cs-pyramid-arrow {
  color: rgba(15, 23, 42, 0.25);
}

@media (max-width: 768px) {

  .cs-pyramid-tier--1,
  .cs-pyramid-tier--2,
  .cs-pyramid-tier--3,
  .cs-pyramid-tier--4,
  .cs-pyramid-tier--5 {
    width: 100% !important;
  }
}

/* ============================================
   Experience Hierarchy Pyramid Infographic
   ============================================ */
.cs-hierarchy-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.75rem 2.5rem;
  margin: 3rem 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

body.cs-light-theme .cs-hierarchy-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.cs-hierarchy-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 700;
  color: #a855f7;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

body.cs-light-theme .cs-hierarchy-tag {
  color: #7e22ce;
}

.cs-hierarchy-main-title {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

body.cs-light-theme .cs-hierarchy-main-title {
  color: #0f172a;
}

.cs-hierarchy-sub-lede {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 2.5rem 0;
  max-width: 680px;
}

body.cs-light-theme .cs-hierarchy-sub-lede {
  color: #475569;
}

/* 3-Column Infographic Layout */
.cs-hierarchy-infographic-grid {
  display: grid;
  grid-template-columns: 280px 280px 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
}

@media (max-width: 1100px) {
  .cs-hierarchy-infographic-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Left "Why this matters" callout box */
.cs-hierarchy-why-box {
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 16px;
  padding: 1.35rem 1.5rem;
  margin-bottom: 1.5rem;
}

body.cs-light-theme .cs-hierarchy-why-box {
  background: rgba(126, 34, 206, 0.04);
  border: 1px solid rgba(126, 34, 206, 0.2);
}

.cs-hierarchy-why-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #a855f7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.cs-hierarchy-why-title {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: #c084fc;
  margin: 0 0 0.4rem 0;
}

body.cs-light-theme .cs-hierarchy-why-title {
  color: #7e22ce;
}

.cs-hierarchy-why-desc {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

body.cs-light-theme .cs-hierarchy-why-desc {
  color: #334155;
}

/* Left Callout Stack & Right Stack */
.cs-hierarchy-left-stack,
.cs-hierarchy-right-stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cs-hierarchy-level-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

body.cs-light-theme .cs-hierarchy-level-card {
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.cs-hierarchy-level-card:hover {
  transform: translateX(-2px);
  border-color: rgba(255, 255, 255, 0.15);
}

body.cs-light-theme .cs-hierarchy-level-card:hover {
  border-color: rgba(15, 23, 42, 0.15);
}

.cs-hierarchy-lvl-num {
  font-family: var(--font-mono, monospace);
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.cs-hierarchy-lvl-num--06 {
  color: #a855f7;
}

.cs-hierarchy-lvl-num--05 {
  color: #818cf8;
}

.cs-hierarchy-lvl-num--04 {
  color: #3b82f6;
}

.cs-hierarchy-lvl-num--03 {
  color: #06b6d4;
}

.cs-hierarchy-lvl-num--02 {
  color: #84cc16;
}

.cs-hierarchy-lvl-num--01 {
  color: #f59e0b;
}

.cs-hierarchy-lvl-title {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.cs-hierarchy-lvl-title--06 {
  color: #a855f7;
}

.cs-hierarchy-lvl-title--05 {
  color: #818cf8;
}

.cs-hierarchy-lvl-title--04 {
  color: #3b82f6;
}

.cs-hierarchy-lvl-title--03 {
  color: #06b6d4;
}

.cs-hierarchy-lvl-title--02 {
  color: #84cc16;
}

.cs-hierarchy-lvl-title--01 {
  color: #f59e0b;
}

.cs-hierarchy-lvl-question {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.35;
  margin: 0;
}

body.cs-light-theme .cs-hierarchy-lvl-question {
  color: #1e293b;
}

/* Right Stack Text */
.cs-hierarchy-right-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 68px;
  padding: 0.35rem 0;
}

.cs-hierarchy-right-lbl {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

body.cs-light-theme .cs-hierarchy-right-lbl {
  color: #64748b;
}

.cs-hierarchy-right-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

body.cs-light-theme .cs-hierarchy-right-desc {
  color: #334155;
}

/* Center Pyramid SVG */
.cs-hierarchy-svg-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.cs-hierarchy-svg {
  width: 100%;
  max-width: 300px;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.3));
}

/* ============================================
   UX Pyramid Infographic Component
   ============================================ */
.cs-ux-pyramid-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2.75rem 2.5rem;
  margin: 3rem 0;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

body.cs-light-theme .cs-ux-pyramid-card {
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
}

.cs-ux-pyramid-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 700;
  color: #3b82f6;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

body.cs-light-theme .cs-ux-pyramid-tag {
  color: #2563eb;
}

.cs-ux-pyramid-main-title {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.75rem 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

body.cs-light-theme .cs-ux-pyramid-main-title {
  color: #0f172a;
}

.cs-ux-pyramid-sub-lede {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 2.5rem 0;
  max-width: 720px;
}

body.cs-light-theme .cs-ux-pyramid-sub-lede {
  color: #475569;
}

/* 2-Column Split Layout */
.cs-ux-pyramid-split-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 990px) {
  .cs-ux-pyramid-split-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Groupings Header */
.cs-ux-group-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.75rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.cs-light-theme .cs-ux-group-header {
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.cs-ux-group-header:first-child {
  margin-top: 0;
}

.cs-ux-group-badge {
  font-family: var(--font-mono, monospace);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 99px;
}

.cs-ux-group-badge--top {
  color: #c084fc;
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.25);
}

.cs-ux-group-badge--base {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.25);
}

.cs-ux-group-title {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.02em;
}

body.cs-light-theme .cs-ux-group-title {
  color: #0f172a;
}

/* Tier Card List */
.cs-ux-tier-cards-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.cs-ux-tier-card {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.1rem 1.35rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}

body.cs-light-theme .cs-ux-tier-card {
  background: rgba(248, 250, 252, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.cs-ux-tier-card:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

body.cs-light-theme .cs-ux-tier-card:hover {
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.cs-ux-tier-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
}

.cs-ux-tier-card--06::before {
  background: #a855f7;
}

.cs-ux-tier-card--05::before {
  background: #6366f1;
}

.cs-ux-tier-card--04::before {
  background: #3b82f6;
}

.cs-ux-tier-card--03::before {
  background: #06b6d4;
}

.cs-ux-tier-card--02::before {
  background: #84cc16;
}

.cs-ux-tier-card--01::before {
  background: #f59e0b;
}

.cs-ux-tier-card-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.3rem;
}

.cs-ux-tier-num {
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.cs-ux-tier-num--06 {
  color: #a855f7;
}

.cs-ux-tier-num--05 {
  color: #818cf8;
}

.cs-ux-tier-num--04 {
  color: #60a5fa;
}

.cs-ux-tier-num--03 {
  color: #22d3ee;
}

.cs-ux-tier-num--02 {
  color: #a3e635;
}

.cs-ux-tier-num--01 {
  color: #fbbf24;
}

.cs-ux-tier-label {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cs-ux-tier-label--06 {
  color: #a855f7;
}

.cs-ux-tier-label--05 {
  color: #818cf8;
}

.cs-ux-tier-label--04 {
  color: #60a5fa;
}

.cs-ux-tier-label--03 {
  color: #22d3ee;
}

.cs-ux-tier-label--02 {
  color: #a3e635;
}

.cs-ux-tier-label--01 {
  color: #fbbf24;
}

.cs-ux-tier-question {
  font-family: var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.35rem;
}

body.cs-light-theme .cs-ux-tier-question {
  color: #0f172a;
}

.cs-ux-tier-desc {
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

body.cs-light-theme .cs-ux-tier-desc {
  color: #475569;
}

/* Pyramid Graphic Container */
.cs-ux-pyramid-graphic-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.cs-ux-pyramid-svg-img {
  width: 100%;
  max-width: 360px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.35));
}

/* ============================================
   Stacked Quote Cards Component (Reference UI)
   ============================================ */
.cs-stacked-quote-deck {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 3.5rem 0 2.5rem 0;
  position: relative;
  width: 100%;
}

.cs-stacked-deck-kicker {
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 700;
  color: #ff6b00;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 2.25rem;
  text-align: center;
}

body.cs-light-theme .cs-stacked-deck-kicker {
  color: #ea580c;
}

.cs-stacked-card-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  cursor: pointer;
}

/* Layer Base Card Styling */
.cs-stacked-card {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  padding: 2.5rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  user-select: none;
}

/* Layer 3 (Bottom) */
.cs-stacked-card--layer3 {
  background: linear-gradient(135deg, #bfdbfe, #93c5fd);
  transform: rotate(-6deg) translateY(14px) scale(0.93);
  z-index: 1;
}

/* Layer 2 (Middle) */
.cs-stacked-card--layer2 {
  background: linear-gradient(135deg, #a7f3d0, #6ee7b7);
  transform: rotate(5deg) translateY(8px) scale(0.96);
  z-index: 2;
}

/* Layer 1 (Under Front) */
.cs-stacked-card--layer1 {
  background: linear-gradient(135deg, #fbcfe8, #f472b6);
  transform: rotate(-3deg) translateY(3px) scale(0.98);
  z-index: 3;
}

/* Front Featured Card */
.cs-stacked-card--front {
  background: linear-gradient(135deg, #ff7e5f, #feb47b);
  transform: rotate(0deg) translateY(0) scale(1);
  z-index: 4;
  box-shadow: 0 25px 60px rgba(255, 107, 53, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Interactive Fan Out Effect on Hover */
.cs-stacked-card-container:hover .cs-stacked-card--layer3 {
  transform: rotate(-10deg) translateX(-22px) translateY(18px) scale(0.92);
}

.cs-stacked-card-container:hover .cs-stacked-card--layer2 {
  transform: rotate(9deg) translateX(22px) translateY(10px) scale(0.95);
}

.cs-stacked-card-container:hover .cs-stacked-card--layer1 {
  transform: rotate(-4deg) translateY(-6px) scale(0.99);
}

.cs-stacked-card-container:hover .cs-stacked-card--front {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 35px 70px rgba(255, 107, 53, 0.45);
}

/* Front Card Inner Typography */
.cs-stacked-card-header-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.65);
}

.cs-stacked-card-title {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1.15;
  color: #0f172a;
  margin: 0.75rem 0;
  letter-spacing: -0.02em;
}

.cs-stacked-card-desc {
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(15, 23, 42, 0.85);
  margin: 0;
}

.cs-stacked-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(15, 23, 42, 0.75);
}

@media (max-width: 600px) {
  .cs-stacked-card-container {
    max-width: 100%;
    height: 360px;
  }

  .cs-stacked-card {
    padding: 1.75rem;
  }

  .cs-stacked-card-title {
    font-size: 1.65rem;
  }
}

/* ====================================================
   Infinite Moving Quote Cards Marquee Carousel (R to L)
   ==================================================== */
.cs-quotes-marquee-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin: 3.5rem 0 2rem 0;
  padding: 1.5rem 0;
}

.cs-quotes-marquee-track {
  display: flex;
  gap: 1.75rem;
  width: max-content;
  animation: marqueeRightToLeft 32s linear infinite;
  will-change: transform;
}

.cs-quotes-marquee-wrapper:hover .cs-quotes-marquee-track {
  animation-play-state: paused;
}

@keyframes marqueeRightToLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Vertical Tall Quote Card (Reference UI) */
.cs-marquee-quote-card {
  position: relative;
  overflow: hidden;
  width: 320px;
  min-height: 340px;
  border-radius: 0;
  padding: 2.25rem 2rem;
  box-sizing: border-box;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: none;
  border: none;
  transition: transform 0.35s ease;
  user-select: none;
}

/* Ultra-Prominent Heavy Tactile Grain Noise Overlay */
.cs-marquee-quote-card::before,
.cs-finding-side-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='5' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.88;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 1;
}

.cs-marquee-quote-card::after,
.cs-finding-side-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter2)'/%3E%3C/svg%3E");
  opacity: 0.4;
  mix-blend-mode: color-burn;
  pointer-events: none;
  z-index: 1;
}

.cs-marquee-quote-card>*,
.cs-finding-side-card>* {
  position: relative;
  z-index: 2;
}

.cs-marquee-quote-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: none;
}

/* Richer Medium Pastel Color Schemes (No Border) */
.cs-marquee-quote-card--gold,
.cs-finding-side-card--gold {
  background: linear-gradient(145deg, #fde047 0%, #eab308 60%, #d97706 100%);
  color: #000000;
}

.cs-marquee-quote-card--blue,
.cs-finding-side-card--blue {
  background: linear-gradient(145deg, #bae6fd 0%, #60a5fa 60%, #3b82f6 100%);
  color: #000000;
}

.cs-marquee-quote-card--rose,
.cs-finding-side-card--rose {
  background: linear-gradient(145deg, #fecdd3 0%, #f472b6 60%, #e11d48 100%);
  color: #000000;
}

.cs-marquee-quote-card--mint,
.cs-finding-side-card--mint {
  background: linear-gradient(145deg, #a7f3d0 0%, #34d399 60%, #10b981 100%);
  color: #000000;
}

.cs-marquee-quote-card--purple,
.cs-finding-side-card--purple {
  background: linear-gradient(145deg, #e9d5ff 0%, #c084fc 60%, #9333ea 100%);
  color: #000000;
}

.cs-marquee-quote-card--coral,
.cs-finding-side-card--coral {
  background: linear-gradient(145deg, #fed7aa 0%, #fb923c 60%, #f97316 100%);
  color: #000000;
}

/* Typography Inside Cards (Pure Black) */
.cs-marquee-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.cs-marquee-card-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000;
}

.cs-marquee-card-title {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 1.85rem;
  font-weight: 900;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -0.02em;
  color: #000000;
}

.cs-marquee-card-desc {
  font-size: 0.925rem;
  line-height: 1.6;
  color: #000000;
  margin: 0;
}

.cs-marquee-card-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 700;
  color: #000000;
}

/* ====================================================
   Detailed Findings Split Row Breakdown (Section 04)
   ==================================================== */
.cs-findings-details-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3.5rem;
}

.cs-finding-split-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cs-finding-split-row:last-child,
body.cs-light-theme .cs-finding-split-row:last-child {
  border-bottom: none;
}

body.cs-light-theme .cs-finding-split-row {
  border-bottom: 1px solid rgba(15, 23, 42, 0.09);
}

.cs-finding-side-card {
  position: relative;
  overflow: hidden;
  width: 140px;
  min-height: 210px;
  padding: 1.25rem 0.85rem;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: #ffffff !important;
  color: #000000;
  box-shadow: none;
  border: none !important;
  transform: none;
  user-select: none;
  flex-shrink: 0;
  justify-self: end;
  transition: transform 0.3s ease;
}

body.cs-light-theme .cs-finding-side-card {
  background: #ffffff !important;
  border: none !important;
}

.cs-finding-side-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
}

.cs-finding-side-quote {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 1.4;
  color: #000000;
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cs-finding-revelation-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #00ef87;
  font-weight: 600;
  margin: 0.85rem 0 0 0;
}

body.cs-light-theme .cs-finding-revelation-text {
  color: #059669;
}

@media (max-width: 868px) {
  .cs-finding-split-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cs-finding-side-card {
    width: 100%;
    min-height: auto;
    padding: 1.75rem 1.5rem;
  }
}

.cs-finding-hdr-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.cs-finding-num-tag {
  font-family: var(--font-mono, monospace);
  font-size: 0.8rem;
  font-weight: 800;
  color: #00ef87;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

body.cs-light-theme .cs-finding-num-tag {
  color: #10b981;
}

.cs-finding-card-title {
  font-family: 'Gilroy ExtraBold', var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-primary, #ffffff);
  margin: 0;
}

body.cs-light-theme .cs-finding-card-title {
  color: #0f172a;
}

.cs-finding-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 239, 135, 0.12);
  border: 1px solid rgba(0, 239, 135, 0.3);
  color: #00ef87;
  font-family: var(--font-mono, monospace);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}

body.cs-light-theme .cs-finding-stat-pill {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #047857;
}

.cs-finding-desc-text {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary, rgba(255, 255, 255, 0.8));
  margin: 0 0 1.25rem 0;
}

body.cs-light-theme .cs-finding-desc-text {
  color: #334155;
}

.cs-finding-quote-box {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid #00ef87;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
  border-radius: 0 8px 8px 0;
}

body.cs-light-theme .cs-finding-quote-box {
  background: #f8fafc;
  border-left: 3px solid #10b981;
}

.cs-finding-quote-text {
  font-family: var(--font-sans, "Space Grotesk"), sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1.5;
  color: var(--text-primary, #ffffff);
  margin: 0 0 0.35rem 0;
}

body.cs-light-theme .cs-finding-quote-text {
  color: #0f172a;
}

.cs-finding-revelation-box {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(255, 255, 255, 0.12);
  font-size: 0.95rem;
  color: var(--text-secondary, rgba(255, 255, 255, 0.85));
}

body.cs-light-theme .cs-finding-revelation-box {
  border-top: 1px dashed rgba(15, 23, 42, 0.15);
  color: #334155;
}

.cs-finding-revelation-label {
  font-family: var(--font-mono, monospace);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #00ef87;
  flex-shrink: 0;
}

body.cs-light-theme .cs-finding-revelation-label {
  color: #059669;
}

/* Enduring Design Decision Callout */
.cs-enduring-callout {
  margin-top: 2rem;
  margin-bottom: 2.75rem;
  padding: 2rem 2rem 1.5rem 2rem;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.4) 65%, rgba(6, 78, 59, 0.3) 100%);
  border: 1px solid rgba(0, 239, 135, 0.2);
  border-radius: 0 !important;
  transition: all 0.3s ease;
}

.cs-enduring-callout-title {
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.45;
  color: #ffffff;
  margin: 0 0 0.65rem 0;
  letter-spacing: -0.01em;
}

.cs-enduring-callout-desc {
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.cs-enduring-callout .cs-before-after-grid {
  margin-top: 1.5rem !important;
  margin-bottom: 0 !important;
}

.cs-enduring-callout .cs-image-item {
  margin-bottom: 0 !important;
}

body.cs-light-theme .cs-enduring-callout,
body.light-theme .cs-enduring-callout {
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 65%, #e6f7ee 100%) !important;
  border: 1px solid rgba(16, 185, 129, 0.25) !important;
  border-radius: 0 !important;
}

body.cs-light-theme .cs-enduring-callout-title,
body.light-theme .cs-enduring-callout-title {
  color: #0f172a !important;
}

body.cs-light-theme .cs-enduring-callout-desc,
body.light-theme .cs-enduring-callout-desc {
  color: #334155 !important;
}

body.cs-light-theme .cs-ba-tag--before,
body.light-theme .cs-ba-tag--before {
  color: #475569 !important;
}

body.cs-light-theme .cs-ba-tag--after,
body.light-theme .cs-ba-tag--after {
  color: #047857 !important;
}

/* ── Case Study Story Prose & Paragraph Spacing ── */
.cs-sec-hdr {
  margin-bottom: 2.25rem !important;
}

.cs-sec-num {
  font-family: var(--font-mono, monospace) !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.15em !important;
  color: #10b981 !important;
  display: block !important;
  margin-bottom: 0.5rem !important;
}

.cs-sec-title {
  font-family: 'Space Grotesk', 'Gilroy ExtraBold', sans-serif !important;
  font-size: clamp(1.8rem, 3.8vw, 2.75rem) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em !important;
  line-height: 1.25 !important;
  color: #0f172a !important;
  margin: 0 !important;
}

body.cs-light-theme .cs-sec-title,
body.light-theme .cs-sec-title {
  color: #0f172a !important;
}

.cs-prose {
  font-family: 'Plus Jakarta Sans', var(--font-sans, sans-serif), sans-serif !important;
  font-size: clamp(1.05rem, 1.8vw, 1.18rem) !important;
  line-height: 1.85 !important;
  color: #334155 !important;
  max-width: 820px !important;
}

body.cs-light-theme .cs-prose,
body.light-theme .cs-prose {
  color: #334155 !important;
}

.cs-prose p {
  margin-top: 0 !important;
  margin-bottom: 1.85rem !important;
  line-height: 1.85 !important;
}

.cs-prose p:last-child {
  margin-bottom: 0 !important;
}

.cs-prose p.cs-body-lead {
  font-size: clamp(1.2rem, 2.3vw, 1.4rem) !important;
  font-weight: 600 !important;
  line-height: 1.65 !important;
  color: #0f172a !important;
  margin-bottom: 1.85rem !important;
}

body.cs-light-theme .cs-prose p.cs-body-lead,
body.light-theme .cs-prose p.cs-body-lead {
  color: #0f172a !important;
}

.cs-prose p strong,
.cs-prose p b {
  color: #0f172a !important;
  font-weight: 700 !important;
}

body.cs-light-theme .cs-prose p strong,
body.cs-light-theme .cs-prose p b,
body.light-theme .cs-prose p strong,
body.light-theme .cs-prose p b {
  color: #0f172a !important;
}

.cs-prose ul,
.cs-prose ol {
  margin-top: 0 !important;
  margin-bottom: 1.85rem !important;
  padding-left: 1.5rem !important;
}

.cs-prose li {
  margin-bottom: 0.85rem !important;
  line-height: 1.8 !important;
}

/* Zero Border Radius Card Enforcement */
.cs-card,
.cs-metric,
.cs-metrics-row,
.cs-video-frame,
.cs-callout-box,
.cs-insight-card,
.cs-outcomes-footnote,
.cs-showcase,
.cs-pull-quote,
blockquote {
  border-radius: 0 !important;
}

/* Samsung Galaxy Phone Mockup Styling */
.samsung-phone-container {
  flex: 0 0 270px;
  scroll-snap-align: center;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.samsung-phone-container:hover {
  transform: translateY(-8px);
}

.samsung-phone-frame {
  position: relative;
  width: 270px;
  height: 560px;
  background: #181a1f;
  border-radius: 28px !important;
  padding: 7px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.samsung-camera-dot {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #000000;
  border-radius: 50%;
  z-index: 15;
  border: 1px solid #22242b;
}

.samsung-phone-screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 22px !important;
  overflow: hidden;
  position: relative;
}

.samsung-phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/* Section Divider matching Airtel Case Study Theme */
.cs-divider,
hr.cs-divider {
  border: none !important;
  height: 1px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  margin: 4rem 0 !important;
}

body.cs-light-theme .cs-divider,
body.cs-light-theme hr.cs-divider,
body.light-theme .cs-divider,
body.light-theme hr.cs-divider {
  background: rgba(0, 0, 0, 0.08) !important;
}

/* Global Table Alignment & Column Spacing Fix */
.cs-principle-table-wrap,
.cs-table-wrap {
  width: 100%;
  overflow-x: auto;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
}

.cs-principle-table,
.cs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: var(--fs-body, 0.95rem);
  line-height: 1.6;
}

.cs-principle-table th,
.cs-principle-table td,
.cs-table th,
.cs-table td {
  text-align: left !important;
  vertical-align: top;
  padding: 1rem 2.5rem 1rem 0;
  border-bottom: 1px solid var(--border, rgba(0, 0, 0, 0.08));
}

.cs-principle-table th,
.cs-table th {
  font-size: var(--fs-small, 1rem);
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 2px solid var(--border, rgba(0, 0, 0, 0.15));
  padding-bottom: 0.85rem;
}

.cs-principle-table th:last-child,
.cs-principle-table td:last-child,
.cs-table th:last-child,
.cs-table td:last-child {
  padding-right: 0;
}