/* ============================================================
   SLIDE 2: Problem vs. Goal — Cinematic Split
   ============================================================ */

/* Full-bleed background */
.ctx-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.ctx-backdrop__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  opacity: 0.35;
}

.ctx-backdrop__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13,17,23,0.6) 0%, rgba(13,17,23,0.85) 50%, rgba(13,17,23,0.95) 100%),
    linear-gradient(90deg, rgba(13,17,23,0.3) 0%, transparent 40%, transparent 60%, rgba(13,17,23,0.3) 100%);
}

/* Header */
.ctx-header {
  margin-bottom: 32px;
}

/* Two-column + VS layout */
.ctx-columns {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: start;
}

/* Column label */
.ctx-half__label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}

/* VS divider */
.ctx-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding-top: 30px;
}

.ctx-vs__line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(23,147,207,0.2), transparent);
}

.ctx-vs__badge {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0.05em;
  color: var(--blue);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(23,147,207,0.25);
  border-radius: 50%;
  background: rgba(23,147,207,0.06);
  flex-shrink: 0;
}

/* Individual list items */
.ctx-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
}

.ctx-item + .ctx-item {
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* Dot markers — only color accent */
.ctx-item__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

.ctx-item__dot--red {
  background: var(--red);
  box-shadow: 0 0 10px rgba(248,81,73,0.35);
}

.ctx-item__dot--green {
  background: var(--green);
  box-shadow: 0 0 10px rgba(63,185,80,0.35);
}

/* Text */
.ctx-item__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

.ctx-item__desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .ctx-columns {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ctx-vs {
    flex-direction: row;
    padding-top: 0;
  }

  .ctx-vs__line {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(23,147,207,0.2), transparent);
  }

  .ctx-backdrop__img {
    object-position: center;
    opacity: 0.2;
  }
}
