/* ==============================================
   CASE STUDY SECTIONS - Clean Content Layout
   Premium card-based sections with dark mode
   ============================================== */

/* ==============================================
   SECTION BASE
   ============================================== */

.cs-section {
  padding: 5rem 0;
  background: var(--surface-1, #fffaf2);
}

.cs-section--alt {
  background: transparent;
}

.cs-section-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Add left margin for side navigation on large screens */
@media (min-width: 1201px) {
  .cs-section-container {
    margin-left: calc(50% - 550px + 60px);
  }
}

/* Section Header */
.cs-section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.cs-section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--cs-accent, #b45309);
  margin-bottom: 0.75rem;
}

.cs-section-title {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-display, #1a1a1a);
  margin-bottom: 1rem;
}

/* H3+ headings use Space Grotesk for readability */
.cs-section h3,
.cs-section h4,
.cs-section h5,
.cs-section h6 {
  font-family: var(--font-mono, "Space Grotesk", sans-serif);
}

.cs-section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted, #5c5c5c);
  max-width: 600px;
  margin: 0 auto;
}

/* Dark Mode - Section Base */
[data-theme="dark"] .cs-section {
  background: var(--surface-1, #0f1218);
}

[data-theme="dark"] .cs-section--alt {
  background: transparent;
}

[data-theme="dark"] .cs-section-eyebrow {
  color: var(--cs-accent, #fbbf24);
}

[data-theme="dark"] .cs-section-title {
  color: #fff;
}

[data-theme="dark"] .cs-section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

/* ==============================================
   PROCESS CARDS (3-column grid)
   ============================================== */

.cs-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.cs-process-card {
  background: #fff;
  border: 1px solid var(--color-black-06);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--duration-normal) var(--ease-smooth);
}

@media (hover: hover) {
  .cs-process-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
}

.cs-process-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--text-muted, #5c5c5c);
}

.cs-process-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke-width: 1.5;
}

.cs-process-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-subtle, #767676);
  margin-bottom: 0.5rem;
}

.cs-process-title {
  font-family: var(--font-mono, "Space Grotesk", sans-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--cs-accent, #b45309);
  margin-bottom: 0.75rem;
}

.cs-process-desc {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted, #5c5c5c);
}

/* Dark Mode - Process Cards */
[data-theme="dark"] .cs-process-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

@media (hover: hover) {
  [data-theme="dark"] .cs-process-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.12);
  }
}

[data-theme="dark"] .cs-process-icon {
  color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .cs-process-label {
  color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .cs-process-title {
  color: var(--cs-accent, #fbbf24);
}

[data-theme="dark"] .cs-process-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ==============================================
   CALLOUT CARDS (What Failed, etc.)
   ============================================== */

.cs-callout {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  border-radius: calc(var(--radius-md) * 0.75);
}

.cs-callout-icon {
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dc2626;
}

.cs-callout-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.cs-callout-content {
  flex: 1;
}

.cs-callout-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #dc2626;
  margin-bottom: 0.25rem;
}

.cs-callout-text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-body, #2d2d2d);
}

.cs-callout-text strong {
  font-weight: 600;
}

/* Dark Mode - Callout */
[data-theme="dark"] .cs-callout {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.2);
}

[data-theme="dark"] .cs-callout-icon {
  color: #f87171;
}

[data-theme="dark"] .cs-callout-label {
  color: #f87171;
}

[data-theme="dark"] .cs-callout-text {
  color: rgba(255, 255, 255, 0.8);
}

/* ==============================================
   CONTEXT SECTION (2-column with quote)
   ============================================== */

.cs-context-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.cs-context-content {
  padding-right: 1rem;
}

.cs-context-quote {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--text-heading, #1f1f1f);
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--cs-accent, #f59e0b);
}

.cs-context-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body, #2d2d2d);
  margin-bottom: 1rem;
}

.cs-context-text strong {
  font-weight: 600;
}

/* Context Visual */
.cs-context-visual {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--cs-visual-bg, #FCA35D);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cs-context-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cs-context-visual-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

/* Dark Mode - Context */
[data-theme="dark"] .cs-context-quote {
  color: #fff;
  border-color: var(--cs-accent, #fbbf24);
}

[data-theme="dark"] .cs-context-text {
  color: rgba(255, 255, 255, 0.8);
}

/* ==============================================
   STATUS CARD (Live status with metrics)
   ============================================== */

.cs-status-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-md);
  margin-top: 3rem;
}

@media (max-width: 640px) {
  .cs-status-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}

.cs-status-content {
  flex: 1;
}

.cs-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #059669;
  margin-bottom: 0.5rem;
}

/* Live dot with smooth breathing glow instead of harsh blink */
.cs-status-badge::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: #10b981;
  border-radius: 50%;
  animation: statusBreathe 3s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
}

@keyframes statusBreathe {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 6px 3px rgba(16, 185, 129, 0.15);
    opacity: 0.85;
  }
}

.cs-status-text {
  font-size: 0.9375rem;
  color: var(--text-body, #2d2d2d);
}

.cs-status-metrics {
  display: flex;
  gap: 2rem;
}

.cs-status-metric {
  text-align: right;
}

.cs-status-metric-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-subtle, #767676);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.375rem;
}

.cs-status-metric-label svg {
  width: 1rem;
  height: 1rem;
}

.cs-status-metric-value {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--cs-accent, #b45309);
  font-variant-numeric: tabular-nums;
}

/* Elapsed timer */
.cs-status-elapsed {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-subtle, #6b6b6b);
  margin-top: 0.5rem;
  font-variant-numeric: tabular-nums;
}

.cs-status-elapsed svg {
  width: 0.875rem;
  height: 0.875rem;
  opacity: 0.6;
}

/* Mini sparkline bars */
.cs-status-sparkline {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 18px;
  margin-top: 0.375rem;
  justify-content: flex-end;
}

.cs-status-sparkline-bar {
  width: 3px;
  border-radius: 1px;
  background: rgba(16, 185, 129, 0.25);
  transition: height 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs-status-sparkline-bar:last-child {
  background: #10b981;
}

/* Dark Mode - Status Card */
[data-theme="dark"] .cs-status-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .cs-status-badge {
  color: #34d399;
}

[data-theme="dark"] .cs-status-badge::before {
  background: #34d399;
  animation-name: statusBreatheDark;
}

@keyframes statusBreatheDark {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 6px 3px rgba(52, 211, 153, 0.15);
    opacity: 0.85;
  }
}

[data-theme="dark"] .cs-status-elapsed {
  color: rgba(255, 255, 255, 0.45);
}

[data-theme="dark"] .cs-status-sparkline-bar {
  background: rgba(52, 211, 153, 0.2);
}

[data-theme="dark"] .cs-status-sparkline-bar:last-child {
  background: #34d399;
}

[data-theme="dark"] .cs-status-text {
  color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .cs-status-metric-label {
  color: rgba(255, 255, 255, 0.5);
}

[data-theme="dark"] .cs-status-metric-value {
  color: var(--cs-accent, #fbbf24);
}

/* ==============================================
   THEME COLOR VARIANTS FOR SECTIONS
   ============================================== */

/* Orange/Amber (Bhava) */
.cs-section--orange {
  --cs-accent: #b45309;
  --cs-visual-bg: #FCA35D;
}

[data-theme="dark"] .cs-section--orange {
  --cs-accent: #fbbf24;
}

/* Pink (PushOwl AI) */
.cs-section--pink {
  --cs-accent: #be185d;
  --cs-visual-bg: #f472b6;
}

[data-theme="dark"] .cs-section--pink {
  --cs-accent: #f472b6;
}

/* Green (PushOwl PLG) */
.cs-section--green {
  --cs-accent: #047857;
  --cs-visual-bg: #34d399;
}

[data-theme="dark"] .cs-section--green {
  --cs-accent: #34d399;
}

/* Blue (Branch) */
.cs-section--blue {
  --cs-accent: #1d4ed8;
  --cs-visual-bg: #60a5fa;
}

[data-theme="dark"] .cs-section--blue {
  --cs-accent: #60a5fa;
}

/* Purple (Calendar) */
.cs-section--purple {
  --cs-accent: #6d28d9;
  --cs-visual-bg: #a78bfa;
}

[data-theme="dark"] .cs-section--purple {
  --cs-accent: #a78bfa;
}

/* Teal (Managed Service) */
.cs-section--teal {
  --cs-accent: #0f766e;
  --cs-visual-bg: #2dd4bf;
}

[data-theme="dark"] .cs-section--teal {
  --cs-accent: #2dd4bf;
}

/* Red (BFCM) */
.cs-section--red {
  --cs-accent: #b91c1c;
  --cs-visual-bg: #f87171;
}

[data-theme="dark"] .cs-section--red {
  --cs-accent: #f87171;
}

/* ==============================================
   PROBLEM CARDS (2-column)
   ============================================== */

.cs-problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

.cs-problem-card {
  background: #fff;
  border: 1px solid var(--color-black-06);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: all var(--duration-normal) var(--ease-smooth);
}

@media (hover: hover) {
  .cs-problem-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
}

.cs-problem-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.cs-problem-title {
  font-family: var(--font-mono, "Space Grotesk", sans-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-heading, #1f1f1f);
  margin-bottom: 0.75rem;
}

.cs-problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cs-problem-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-muted, #5c5c5c);
  margin-bottom: 0.5rem;
}

.cs-problem-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--cs-accent, #b45309);
}

/* Dark Mode - Problem Cards */
[data-theme="dark"] .cs-problem-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .cs-problem-title {
  color: #fff;
}

[data-theme="dark"] .cs-problem-list li {
  color: rgba(255, 255, 255, 0.6);
}

/* ==============================================
   INSIGHT BOX
   ============================================== */

.cs-insight-box {
  padding: 1.25rem 1.5rem;
  background: var(--cs-accent-bg, rgba(180, 83, 9, 0.08));
  border-left: 3px solid var(--cs-accent, #b45309);
  border-radius: 0 0.75rem 0.75rem 0;
  margin: 2rem 0;
}

.cs-insight-box p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-body, #2d2d2d);
}

.cs-insight-box strong {
  color: var(--cs-accent, #b45309);
}

[data-theme="dark"] .cs-insight-box {
  background: rgba(251, 191, 36, 0.1);
}

[data-theme="dark"] .cs-insight-box p {
  color: rgba(255, 255, 255, 0.8);
}

[data-theme="dark"] .cs-insight-box strong {
  color: var(--cs-accent, #fbbf24);
}

/* ==============================================
   QUOTE BLOCK
   ============================================== */

.cs-quote {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 1.375rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--cs-accent, #b45309);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: var(--cs-accent-bg, rgba(180, 83, 9, 0.05));
  border-left: 4px solid var(--cs-accent, #b45309);
  border-radius: 0 0.75rem 0.75rem 0;
}

[data-theme="dark"] .cs-quote {
  background: rgba(251, 191, 36, 0.08);
  color: var(--cs-accent, #fbbf24);
}

/* ==============================================
   TRUST PILLARS (4-column)
   ============================================== */

.cs-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 768px) {
  .cs-pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.cs-pillar {
  background: #fff;
  border: 1px solid var(--color-black-06);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--duration-normal) var(--ease-smooth);
}

@media (hover: hover) {
  .cs-pillar:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
}

.cs-pillar-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cs-accent, #b45309);
  margin-bottom: 0.5rem;
}

.cs-pillar-title {
  font-family: var(--font-mono, "Space Grotesk", sans-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading, #1f1f1f);
  margin-bottom: 0.5rem;
}

.cs-pillar-desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted, #5c5c5c);
  margin: 0;
}

[data-theme="dark"] .cs-pillar {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .cs-pillar-number {
  color: var(--cs-accent, #fbbf24);
}

[data-theme="dark"] .cs-pillar-title {
  color: #fff;
}

[data-theme="dark"] .cs-pillar-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ==============================================
   RESEARCH METHOD CARDS
   ============================================== */

.cs-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

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

.cs-method-card {
  background: #fff;
  border: 1px solid var(--color-black-06);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--duration-normal) var(--ease-smooth);
}

@media (hover: hover) {
  .cs-method-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
}

.cs-method-number {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--cs-accent, #b45309);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.cs-method-title {
  font-family: var(--font-mono, "Space Grotesk", sans-serif);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-heading, #1f1f1f);
  margin-bottom: 0.5rem;
}

.cs-method-desc {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--text-muted, #5c5c5c);
  margin: 0;
}

[data-theme="dark"] .cs-method-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .cs-method-number {
  color: var(--cs-accent, #fbbf24);
}

[data-theme="dark"] .cs-method-title {
  color: #fff;
}

[data-theme="dark"] .cs-method-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ==============================================
   FINDINGS GRID (4-column horizontal)
   ============================================== */

.cs-findings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 2rem 0;
}

@media (max-width: 1024px) {
  .cs-findings-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.cs-finding-card {
  background: #fff;
  border: 1px solid var(--color-black-06);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all var(--duration-normal) var(--ease-smooth);
}

@media (hover: hover) {
  .cs-finding-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
}

.cs-finding-number {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--cs-accent, #b45309);
  margin-bottom: 0.5rem;
}

.cs-finding-title {
  font-family: var(--font-mono, "Space Grotesk", sans-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading, #1f1f1f);
  margin-bottom: 0.5rem;
}

.cs-finding-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted, #5c5c5c);
  margin: 0;
}

[data-theme="dark"] .cs-finding-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .cs-finding-number {
  color: var(--cs-accent, #fbbf24);
}

[data-theme="dark"] .cs-finding-title {
  color: #fff;
}

[data-theme="dark"] .cs-finding-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ==============================================
   USER QUOTES - PREMIUM 4-COLUMN GRID
   ============================================== */

/* Responsive Grid Container — adapts to 3 or 4 cards */
.cs-quotes-stack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 2rem 0;
}

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

/* Quote Card - Compact Premium Design */
.cs-quote-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-black-06);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  transition: all var(--duration-slow) var(--ease-smooth);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.04),
    0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Decorative quote mark */
.cs-quote-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--cs-accent, #f59e0b);
  opacity: 0.1;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

@media (hover: hover) {
  .cs-quote-card:hover::before {
    opacity: 0.2;
  }
}

@media (hover: hover) {
  .cs-quote-card:hover {
    transform: translateY(-4px);
    box-shadow:
      0 8px 20px rgba(0, 0, 0, 0.08),
      0 16px 32px rgba(0, 0, 0, 0.05);
    border-color: rgba(var(--cs-accent-rgb, 245, 158, 11), 0.25);
  }
}

/* Quote Text */
.cs-quote-text {
  font-family: var(--font-sans, "DM Sans", sans-serif);
  font-size: 0.875rem;
  font-style: normal;
  line-height: 1.6;
  color: var(--text-body, #2d2d2d);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cs-quote-text strong {
  color: var(--cs-accent, #b45309);
  font-weight: 600;
  background: rgba(var(--cs-accent-rgb, 245, 158, 11), 0.1);
  padding: 0.1em 0.25em;
  border-radius: 3px;
}

/* Author Info - Compact */
.cs-quote-author {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding-top: 0.875rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.cs-quote-avatar {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cs-accent, #f59e0b) 0%, #ea580c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(var(--cs-accent-rgb, 245, 158, 11), 0.3);
  transition: transform 0.3s ease;
}

@media (hover: hover) {
  .cs-quote-card:hover .cs-quote-avatar {
    transform: scale(1.08);
  }
}

.cs-quote-name {
  font-family: var(--font-mono, "Space Grotesk", sans-serif);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-heading, #1f1f1f);
  line-height: 1.2;
}

.cs-quote-role {
  font-size: 0.6875rem;
  color: var(--text-muted, #5c5c5c);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Dark Mode - Quote Cards */
[data-theme="dark"] .cs-quote-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] .cs-quote-card::before {
  color: var(--cs-accent, #fbbf24);
  opacity: 0.15;
}

@media (hover: hover) {
  [data-theme="dark"] .cs-quote-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(var(--cs-accent-rgb, 251, 191, 36), 0.4);
    box-shadow:
      0 8px 24px rgba(0, 0, 0, 0.25),
      0 24px 48px rgba(0, 0, 0, 0.2);
  }
}

[data-theme="dark"] .cs-quote-text {
  color: rgba(255, 255, 255, 0.85);
}

[data-theme="dark"] .cs-quote-text strong {
  color: var(--cs-accent, #fbbf24);
  background: rgba(var(--cs-accent-rgb, 251, 191, 36), 0.15);
}

[data-theme="dark"] .cs-quote-author {
  border-top-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .cs-quote-name {
  color: #fff;
}

[data-theme="dark"] .cs-quote-role {
  color: rgba(255, 255, 255, 0.5);
}

/* Legacy scroll support (if needed elsewhere) */
.cs-quotes-scroll {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.cs-quotes-scroll::-webkit-scrollbar {
  display: none;
}

.cs-quotes-scroll .cs-quote-card {
  flex-shrink: 0;
  width: 280px;
}

/* ==============================================
   JOURNEY MAP
   ============================================== */

.cs-journey {
  margin: 3rem 0;
}

.cs-journey-title {
  font-family: var(--font-mono, "Space Grotesk", sans-serif);
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-heading, #1f1f1f);
  margin-bottom: 2rem;
}

.cs-journey-stages {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 1rem;
}

.cs-journey-stage {
  flex: 1;
  min-width: 140px;
  background: #fff;
  border: 1px solid var(--color-black-06);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all var(--duration-normal) var(--ease-smooth);
}

.cs-journey-stage--pain {
  border-color: rgba(220, 38, 38, 0.2);
  background: rgba(220, 38, 38, 0.02);
}

.cs-journey-marker {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.cs-journey-stage-title {
  font-family: var(--font-mono, "Space Grotesk", sans-serif);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-heading, #1f1f1f);
  margin-bottom: 0.375rem;
}

.cs-journey-stage-desc {
  font-size: 0.75rem;
  line-height: 1.4;
  color: var(--text-muted, #5c5c5c);
  margin-bottom: 0.5rem;
}

.cs-journey-emotion {
  font-size: 0.6875rem;
  font-style: italic;
  color: var(--text-subtle, #767676);
}

[data-theme="dark"] .cs-journey-title {
  color: #fff;
}

[data-theme="dark"] .cs-journey-stage {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .cs-journey-stage--pain {
  background: rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.2);
}

[data-theme="dark"] .cs-journey-stage-title {
  color: #fff;
}

[data-theme="dark"] .cs-journey-stage-desc {
  color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .cs-journey-emotion {
  color: rgba(255, 255, 255, 0.4);
}

/* ==============================================
   SOLUTION CARDS (Before/After)
   ============================================== */

.cs-solution-card {
  background: #fff;
  border: 1px solid var(--color-black-06);
  border-radius: 1.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all var(--duration-normal) var(--ease-smooth);
}

@media (hover: hover) {
  .cs-solution-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  }
}

.cs-solution-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.cs-solution-number {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--cs-accent, #b45309);
  background: var(--cs-accent-bg, rgba(180, 83, 9, 0.1));
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
}

.cs-solution-title {
  font-family: var(--font-mono, "Space Grotesk", sans-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-heading, #1f1f1f);
}

.cs-solution-subtitle {
  font-size: 0.9375rem;
  color: var(--text-muted, #5c5c5c);
  margin-top: 0.25rem;
}

.cs-solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

.cs-solution-before,
.cs-solution-after {
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.cs-solution-before {
  background: rgba(220, 38, 38, 0.05);
  border: 1px solid rgba(220, 38, 38, 0.15);
}

.cs-solution-after {
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.15);
}

.cs-solution-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.cs-solution-before .cs-solution-label {
  color: #dc2626;
}

.cs-solution-after .cs-solution-label {
  color: #16a34a;
}

.cs-solution-content {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-body, #2d2d2d);
}

.cs-solution-visual {
  margin-top: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface-2, #f3e5d6);
}

.cs-solution-visual img {
  width: 100%;
  height: auto;
  display: block;
}

[data-theme="dark"] .cs-solution-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .cs-solution-number {
  background: rgba(251, 191, 36, 0.15);
  color: var(--cs-accent, #fbbf24);
}

[data-theme="dark"] .cs-solution-title {
  color: #fff;
}

[data-theme="dark"] .cs-solution-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

[data-theme="dark"] .cs-solution-before {
  background: rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.2);
}

[data-theme="dark"] .cs-solution-after {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.2);
}

[data-theme="dark"] .cs-solution-content {
  color: rgba(255, 255, 255, 0.8);
}

/* ==============================================
   METRICS/RESULTS SECTION
   ============================================== */

.cs-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

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

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

.cs-metric {
  background: #fff;
  border: 1px solid var(--color-black-06);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: all var(--duration-normal) var(--ease-smooth);
}

@media (hover: hover) {
  .cs-metric:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
}

.cs-metric--highlight {
  background: var(--cs-accent-bg, rgba(180, 83, 9, 0.08));
  border-color: var(--cs-accent, #b45309);
}

.cs-metric-value {
  font-family: var(--font-display, "Playfair Display", serif);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--cs-accent, #b45309);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.cs-metric-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted, #5c5c5c);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

[data-theme="dark"] .cs-metric {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .cs-metric--highlight {
  background: rgba(251, 191, 36, 0.1);
  border-color: var(--cs-accent, #fbbf24);
}

[data-theme="dark"] .cs-metric-value {
  color: var(--cs-accent, #fbbf24);
}

[data-theme="dark"] .cs-metric-label {
  color: rgba(255, 255, 255, 0.6);
}

/* ==============================================
   LEARNINGS LIST
   ============================================== */

.cs-learnings-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1rem;
}

.cs-learning-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--color-black-06);
  border-radius: var(--radius-md);
  transition: all var(--duration-normal) var(--ease-smooth);
}

@media (hover: hover) {
  .cs-learning-item:hover {
    transform: translateX(4px);
    border-color: var(--cs-accent, #b45309);
  }
}

.cs-learning-number {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: var(--cs-accent-bg, rgba(180, 83, 9, 0.1));
  color: var(--cs-accent, #b45309);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}

.cs-learning-content h4 {
  font-family: var(--font-mono, "Space Grotesk", sans-serif);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-heading, #1f1f1f);
  margin-bottom: 0.375rem;
}

.cs-learning-content p {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted, #5c5c5c);
  margin: 0;
}

[data-theme="dark"] .cs-learning-item {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .cs-learning-number {
  background: rgba(251, 191, 36, 0.15);
  color: var(--cs-accent, #fbbf24);
}

[data-theme="dark"] .cs-learning-content h4 {
  color: #fff;
}

[data-theme="dark"] .cs-learning-content p {
  color: rgba(255, 255, 255, 0.6);
}

/* ==============================================
   ROADMAP SECTION
   ============================================== */

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

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

.cs-roadmap-card {
  background: #fff;
  border: 1px solid var(--color-black-06);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all var(--duration-normal) var(--ease-smooth);
}

@media (hover: hover) {
  .cs-roadmap-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
}

.cs-roadmap-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cs-accent, #b45309);
  margin-bottom: 0.75rem;
}

.cs-roadmap-title {
  font-family: var(--font-mono, "Space Grotesk", sans-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-heading, #1f1f1f);
  margin-bottom: 0.5rem;
}

.cs-roadmap-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted, #5c5c5c);
  margin: 0;
}

[data-theme="dark"] .cs-roadmap-card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .cs-roadmap-label {
  color: var(--cs-accent, #fbbf24);
}

[data-theme="dark"] .cs-roadmap-title {
  color: #fff;
}

[data-theme="dark"] .cs-roadmap-desc {
  color: rgba(255, 255, 255, 0.6);
}

/* ==============================================
   PREMIUM GLASSMORPHIC FUTURE BETS CARDS
   ============================================== */

.cs-future-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

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

.cs-future-card {
  position: relative;
  padding: 2.5rem;
  border-radius: 2.5rem;
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(180, 83, 9, 0.15);
  box-shadow: 0 8px 32px rgba(180, 83, 9, 0.04);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

@media (hover: hover) {
  .cs-future-card:hover {
    transform: translateY(-5px);
    border-color: rgba(180, 83, 9, 0.4);
    box-shadow: 0 16px 48px rgba(180, 83, 9, 0.08);
  }
}

.cs-future-label {
  font-size: 0.625rem;
  font-family: var(--font-mono, "Space Grotesk", monospace);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--cs-accent, #d97706);
  margin-bottom: 1.5rem;
}

.cs-future-title {
  font-family: var(--font-mono, "Space Grotesk", sans-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-heading, #1f1f1f);
  margin-bottom: 1.5rem;
}

.cs-future-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cs-future-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted, #5c5c5c);
  margin-bottom: 1rem;
}

.cs-future-list li:last-child {
  margin-bottom: 0;
}

.cs-future-list li::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cs-accent, #d97706);
  margin-top: 0.5rem;
}

/* Deprioritized card - muted styling */
.cs-future-card--muted .cs-future-label {
  color: var(--text-subtle, #767676);
}

.cs-future-card--muted .cs-future-list li {
  opacity: 0.6;
}

.cs-future-card--muted .cs-future-list li::before {
  background: var(--text-subtle, #767676);
}

/* Dark Mode - Future Cards */
[data-theme="dark"] .cs-future-card {
  background: rgba(30, 32, 35, 0.65);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

@media (hover: hover) {
  [data-theme="dark"] .cs-future-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  }
}

[data-theme="dark"] .cs-future-label {
  color: var(--cs-accent, #fbbf24);
}

[data-theme="dark"] .cs-future-title {
  color: #fff;
}

[data-theme="dark"] .cs-future-list li {
  color: rgba(255, 255, 255, 0.7);
}

[data-theme="dark"] .cs-future-list li::before {
  background: var(--cs-accent, #fbbf24);
}

[data-theme="dark"] .cs-future-card--muted .cs-future-label {
  color: rgba(255, 255, 255, 0.4);
}

[data-theme="dark"] .cs-future-card--muted .cs-future-list li::before {
  background: rgba(255, 255, 255, 0.3);
}

/* ==============================================
   PREMIUM GLASSMORPHIC RISKS CARD
   ============================================== */

.cs-risks-card {
  position: relative;
  padding: 3rem;
  border-radius: 3rem;
  backdrop-filter: blur(16px) saturate(120%);
  -webkit-backdrop-filter: blur(16px) saturate(120%);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(180, 83, 9, 0.15);
  box-shadow: 0 8px 32px rgba(180, 83, 9, 0.04);
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

/* Top gradient accent line */
.cs-risks-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(180, 83, 9, 0.3), transparent);
}

.cs-risks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 3rem;
}

@media (max-width: 640px) {
  .cs-risks-card {
    padding: 2rem;
    border-radius: 2rem;
  }

  .cs-risks-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.cs-risk-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem;
}

.cs-risk-icon {
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 0.125rem;
  color: var(--cs-accent, #d97706);
}

.cs-risk-text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-muted, #5c5c5c);
}

/* Dark Mode - Risks Card */
[data-theme="dark"] .cs-risks-card {
  background: rgba(30, 32, 35, 0.65);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

[data-theme="dark"] .cs-risks-card::before {
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.3), transparent);
}

[data-theme="dark"] .cs-risk-text {
  color: rgba(255, 255, 255, 0.7);
}
