/* ===== THESIS SECTION ===== */
.ts-section {
  width: 100%;
  font-family: inherit;
  background: transparent;
  margin: 0;
  padding: 0;
}


/* ── Scroll outer: total height = cards × 100vh ── */
.ts-scroll-outer {
  position: relative;
  margin: 0;
  padding: 0;
}

/* ── Sticky viewport ── */
.ts-sticky-wrap {
  background: transparent;
  position: sticky;
  top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 24px;
}

/* ── Stack container — sized by JS ── */
.ts-cards-stack {
  position: relative;
  width: 100%;
  max-width: 680px;
}

/* ── Cards: all absolute, stacked behind ── */
.ts-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.12);
  overflow: hidden;
  will-change: transform, opacity;
  transform-origin: top center;
}

/* ── Dots ── */
.ts-dots {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 28px;
  background: rgba(0,0,0,0.07);
  padding: 6px 10px;
  border-radius: 999px;
  position: relative;
  z-index: 10;
}

.ts-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bbb;
  cursor: pointer;
  transition: all 0.3s;
  flex-shrink: 0;
}

.ts-dot.ts-active {
  background: #1a6b4a;
  width: 26px;
  border-radius: 999px;
}

/* ── Card internals ── */
.ts-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 24px 16px;
}

.ts-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1a6b4a;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ts-card-meta { display: flex; flex-direction: column; gap: 2px; }

.ts-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}

.ts-card-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a6b4a;
}

.ts-stat-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 24px;
  background: #f0faf5;
  font-size: 14px;
  border-top: 1px solid rgba(0,0,0,0.04);
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.ts-stat-value { font-weight: 700; font-size: 15px; }
.ts-stat-sep { opacity: 0.35; }
.ts-stat-desc { font-weight: 400; opacity: 0.8; }

.ts-card-body {
  padding: 16px 24px;
  font-size: 14.5px;
  line-height: 1.7;
  color: #444;
  border-bottom: 1px solid #f0f0f0;
}
.ts-card-body p { margin: 0; }

.ts-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 14px 24px;
  border-bottom: 1px solid #f0f0f0;
}

.ts-bullet {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: #333;
}

.ts-bullet-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1a6b4a;
  flex-shrink: 0;
}

.ts-cta-bar {
  padding: 14px 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  background: linear-gradient(90deg, #1a6b4a 0%, #7c3aed 100%);
}

@media (max-width: 640px) {
  .ts-sticky-wrap {
  background: transparent; padding: 20px 16px; }
  .ts-card-top { padding: 20px 18px 14px; }
  .ts-stat-bar, .ts-card-body, .ts-bullets, .ts-cta-bar { padding-left: 18px; padding-right: 18px; }
}
