/* ============================================
   DISCOVER COURSE - Portal Psychedelic Safety
   Native full-page action experience
   ============================================ */

/* PORTAL THEME VARS */
.dc {
  --dc-bg: #010101;
  --dc-card: rgba(12,12,12,0.85);
  --dc-border: rgba(255,163,0,0.15);
  --dc-border-active: rgba(255,163,0,0.4);
  --dc-orange: #FFA300;
  --dc-pink: #FE20B0;
  --dc-teal: #5CE0D8;
  --dc-lime: #E8FF0A;
  --dc-text: #FEFEFE;
  --dc-muted: #a0a0a0;
  --dc-danger: #ff4444;
  --dc-grad: linear-gradient(90deg, #FE20B0, #FFA300, #5CE0D8);
  --dc-grad-full: linear-gradient(90deg, #FE20B0, #FF6B9D, #FFA300, #E8FF0A, #5CE0D8);
  --dc-font: 'Archivo', 'Inter', -apple-system, sans-serif;
  --dc-radius: 16px;
  --dc-radius-sm: 12px;
  --dc-radius-xs: 8px;
}

/* ── LAYOUT ── */
.dc {
  min-height: 100vh;
  min-height: 100svh;
  background: var(--dc-bg);
  color: var(--dc-text);
  font-family: var(--dc-font);
  padding-bottom: 120px;
  position: relative;
  overflow-x: hidden; /* Prevent horizontal scroll from negative-margin cards */
  -webkit-text-size-adjust: 100%; /* Prevent iOS font inflation on rotate */
}
.dc * { -webkit-tap-highlight-color: transparent; }

/* Ambient glow — pseudo-element avoids background-attachment:fixed (broken on iOS) */
.dc::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(254,32,176,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(92,224,216,0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(255,163,0,0.04) 0%, transparent 50%);
}

/* ── TOP BAR ── */
.dc-topbar {
  position: sticky;
  top: calc(var(--nav-height, 64px) + var(--preview-bar-height, 0px));
  z-index: 50;
  background: rgba(1,1,1,0.92);
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--dc-border);
}
.dc-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 720px;
  margin: 0 auto;
}
.dc-topbar__back {
  background: none;
  border: none;
  color: var(--dc-muted);
  font-size: 14px;
  font-family: var(--dc-font);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 8px;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.dc-topbar__back:hover,
.dc-topbar__back:active { color: #fff; background: rgba(255,255,255,0.06); }
.dc-topbar__back svg { width: 16px; height: 16px; }
.dc-topbar__brand {
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--dc-orange);
  font-family: var(--dc-font);
}
.dc-topbar__pts {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 700;
  font-size: 14px;
  color: var(--dc-orange);
}
.dc-topbar__pts-icon {
  font-size: 11px;
}

/* Progress bar */
.dc-progress {
  height: 3px;
  background: rgba(255,163,0,0.08);
}
.dc-progress__fill {
  height: 100%;
  width: 0%;
  background: var(--dc-grad);
  transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
  border-radius: 0 2px 2px 0;
}

/* ── HERO ── */
.dc-hero {
  position: relative;
  width: 100%;
  height: 340px;
  overflow: hidden;
}
.dc-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.dc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(1,1,1,0) 0%,
    rgba(1,1,1,0.3) 40%,
    rgba(1,1,1,0.85) 75%,
    rgba(1,1,1,1) 100%
  );
}
.dc-hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 20px 32px;
  max-width: 720px;
  margin: 0 auto;
}
.dc-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--dc-orange);
  background: rgba(255,163,0,0.1);
  border: 1px solid rgba(255,163,0,0.25);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.dc-hero__title {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
.dc-hero__sub {
  font-size: 14px;
  color: var(--dc-muted);
  line-height: 1.6;
  max-width: 520px;
}
.dc-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 14px 32px;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--dc-orange), #ff8c00);
  color: #000;
  font-size: 16px;
  font-weight: 800;
  font-family: var(--dc-font);
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
  box-shadow: 0 4px 24px rgba(255,163,0,0.3);
}
.dc-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,163,0,0.45);
}
.dc-hero__cta:active {
  transform: scale(0.97);
}

/* ── ROADMAP ── */
.dc-roadmap {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 20px 16px;
}
.dc-roadmap__track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
}
.dc-roadmap__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}
.dc-roadmap__line {
  position: absolute;
  top: 22px;
  left: calc(50% + 26px);
  right: calc(-50% + 26px);
  height: 2px;
  background: rgba(255,163,0,0.12);
  z-index: 0;
  transition: background 0.5s;
}
.dc-roadmap__item:last-child .dc-roadmap__line { display: none; }
.dc-roadmap__line--done { background: var(--dc-grad) !important; }
.dc-roadmap__node {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 800;
  border: 2px solid rgba(255,163,0,0.2);
  background: rgba(12,12,12,0.9);
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
  cursor: pointer;
  font-family: var(--dc-font);
}
.dc-roadmap__node--active {
  border-color: var(--dc-orange);
  background: linear-gradient(135deg, #FE20B0, #FFA300);
  box-shadow: 0 0 28px rgba(255,163,0,0.35), 0 0 8px rgba(254,32,176,0.2);
  color: #fff;
}
.dc-roadmap__node--done {
  border-color: var(--dc-teal);
  background: linear-gradient(135deg, #FFA300, #5CE0D8);
  color: #fff;
  box-shadow: 0 0 16px rgba(92,224,216,0.2);
}
.dc-roadmap__node--locked {
  opacity: 0.3;
  cursor: default;
}
.dc-roadmap__node--locked svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
}
.dc-roadmap__label {
  font-size: 10px;
  color: var(--dc-muted);
  text-align: center;
  margin-top: 8px;
  max-width: 72px;
  line-height: 1.3;
  font-weight: 500;
  transition: color 0.3s;
}
.dc-roadmap__node--active + .dc-roadmap__label { color: var(--dc-orange); font-weight: 700; }
.dc-roadmap__node--done + .dc-roadmap__label { color: var(--dc-teal); }

/* ── MAIN CONTENT AREA ── */
.dc-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── CHAPTER (container for all steps) ── */
.dc-chapter {
  display: none;
}
.dc-chapter--active {
  display: block;
}

/* ── STEP CARD ── */
.dc-step {
  background: rgba(8,8,12,0.75);
  border: 1px solid var(--dc-border);
  border-radius: var(--dc-radius);
  padding: 28px 24px;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.4,0,0.2,1);
  display: none;
  /* backdrop-filter only on desktop — expensive on mobile GPU */
  overflow-x: hidden; /* Prevent internal overflow on mobile */
  overflow-wrap: break-word;
  word-wrap: break-word;
}
@media (min-width: 768px) {
  .dc-step {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}
.dc-step--visible {
  opacity: 1;
  transform: translateY(0);
  display: block;
}
.dc-step--past {
  display: none !important;
}

/* ── SECTION IMAGE ── */
.dc-section-img {
  position: relative;
  width: calc(100% + 48px);
  margin: -28px -24px 24px;
  height: 200px;
  overflow: hidden;
  border-radius: var(--dc-radius) var(--dc-radius) 0 0;
}
.dc-section-img__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dc-section-img__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(1,1,1,0.7) 100%);
  pointer-events: none;
}
.dc-section-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(254,32,176,0.2) 0%, rgba(255,163,0,0.1) 50%, rgba(92,224,216,0.15) 100%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.dc-section-img__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 24px;
  background: linear-gradient(to top, rgba(1,1,1,0.85) 0%, transparent 100%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--dc-orange);
  font-family: var(--dc-font);
}

/* ── BREAK IMAGE (smaller, between sections) ── */
.dc-break-img {
  position: relative;
  width: 100%;
  height: 140px;
  border-radius: var(--dc-radius-sm);
  overflow: hidden;
  margin: 0 0 20px;
}
.dc-break-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dc-break-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(254,32,176,0.15), rgba(255,163,0,0.1), rgba(92,224,216,0.15));
  mix-blend-mode: color;
}
.dc-break-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(1,1,1,0.3);
  z-index: 1;
}

/* ── TYPOGRAPHY ── */
.dc-step__pill {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--dc-orange);
  padding: 5px 0;
  margin-bottom: 10px;
}
.dc-step h2 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1.3;
  font-family: var(--dc-font);
  color: #fff;
}
.dc-step h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: var(--dc-font);
}
.dc-step p {
  font-size: 14px;
  color: var(--dc-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ── ICON GRID ── */
.dc-icon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 20px 0;
}
.dc-icon-grid__item {
  text-align: center;
  padding: 18px 10px;
  background: rgba(15,15,20,0.6);
  border: 1px solid var(--dc-border);
  border-radius: var(--dc-radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.dc-icon-grid__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.dc-icon-grid__icon--orange { background: linear-gradient(135deg, #FFA300, #FF6B00); color: #000; }
.dc-icon-grid__icon--pink { background: linear-gradient(135deg, #FE20B0, #FF6B9D); color: #000; }
.dc-icon-grid__icon--teal { background: linear-gradient(135deg, #5CE0D8, #2BA89E); color: #000; }
.dc-icon-grid__label {
  font-size: 12px;
  color: var(--dc-muted);
  line-height: 1.3;
  font-weight: 500;
}

/* ── CALLOUT ── */
.dc-callout {
  background: rgba(255,163,0,0.05);
  border: 1px solid rgba(255,163,0,0.25);
  border-radius: var(--dc-radius-sm);
  padding: 20px;
  text-align: center;
  margin: 20px 0;
}
.dc-callout__text {
  font-size: 17px;
  font-weight: 800;
  color: var(--dc-text);
  letter-spacing: 0.5px;
  font-family: var(--dc-font);
}
.dc-callout__label {
  font-size: 11px;
  color: var(--dc-orange);
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

/* ── BULLET LIST ── */
.dc-bullets {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}
.dc-bullets li {
  font-size: 14px;
  color: var(--dc-muted);
  line-height: 1.7;
  padding: 5px 0 5px 22px;
  position: relative;
}
.dc-bullets li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dc-orange);
}

/* ── QUOTE BLOCK ── */
.dc-quote {
  border-left: 3px solid var(--dc-orange);
  padding: 18px 22px;
  margin: 20px 0;
  background: rgba(255,163,0,0.03);
  border-radius: 0 var(--dc-radius-sm) var(--dc-radius-sm) 0;
}
.dc-quote p {
  font-size: 15px;
  font-style: italic;
  color: var(--dc-text);
  line-height: 1.7;
  margin: 0;
}
.dc-quote__attr {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.dc-quote__attr img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--dc-orange);
}
.dc-quote__attr span {
  font-size: 12px;
  color: var(--dc-muted);
  font-style: normal;
}
.dc-quote__attr strong {
  color: var(--dc-text);
}

/* ── STAT ROW ── */
.dc-stats {
  display: flex;
  gap: 12px;
  margin: 20px 0;
  flex-wrap: wrap;
}
.dc-stat {
  flex: 1;
  min-width: 120px;
  background: rgba(15,15,20,0.7);
  border: 1px solid var(--dc-border);
  border-radius: var(--dc-radius-sm);
  padding: 20px 14px;
  text-align: center;
}
.dc-stat__num {
  font-size: 32px;
  font-weight: 900;
  color: var(--dc-orange);
  line-height: 1.1;
  font-family: var(--dc-font);
}
.dc-stat__label {
  font-size: 12px;
  color: var(--dc-muted);
  line-height: 1.4;
  margin-top: 6px;
}

/* ── HIGHLIGHT CARD ── */
.dc-highlight {
  border: 1px solid rgba(92,224,216,0.35);
  border-radius: var(--dc-radius);
  padding: 24px;
  margin: 16px 0;
  background: rgba(92,224,216,0.03);
}
.dc-highlight--pink {
  border-color: rgba(254,32,176,0.35);
  background: rgba(254,32,176,0.04);
}
.dc-highlight__title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--dc-teal);
  margin-bottom: 8px;
  font-family: var(--dc-font);
}
.dc-highlight--pink .dc-highlight__title { color: var(--dc-pink); }
.dc-highlight p {
  font-size: 13px;
  color: var(--dc-muted);
  line-height: 1.6;
  margin-bottom: 8px;
}
.dc-highlight__phone {
  font-size: 28px;
  font-weight: 900;
  color: var(--dc-orange);
  margin: 10px 0;
  letter-spacing: 1px;
  font-family: var(--dc-font);
}
.dc-highlight__stat {
  font-size: 12px;
  color: var(--dc-teal);
  line-height: 1.5;
  font-weight: 500;
}

/* ── WARNING CARD ── */
.dc-warning {
  border-left: 3px solid var(--dc-orange);
  background: rgba(255,163,0,0.05);
  padding: 14px 16px;
  border-radius: 0 var(--dc-radius-xs) var(--dc-radius-xs) 0;
  margin-bottom: 10px;
  font-size: 13px;
  color: var(--dc-text);
  line-height: 1.5;
}
.dc-warning strong { color: var(--dc-orange); }

/* ── TWO COLUMN ── */
.dc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}
@media (max-width: 500px) { .dc-two-col { grid-template-columns: 1fr; } }
.dc-col-card {
  background: rgba(15,15,20,0.7);
  border: 1px solid var(--dc-border);
  border-radius: var(--dc-radius-sm);
  padding: 18px;
}
.dc-col-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dc-pink);
  font-family: var(--dc-font);
}
.dc-col-card--alt h4 { color: var(--dc-teal); }
.dc-col-card p { font-size: 13px; color: var(--dc-muted); line-height: 1.5; margin: 0; }

/* ── PHASE ROW (Before/After) ── */
.dc-phases {
  display: flex;
  gap: 12px;
  margin: 20px 0;
}
@media (max-width: 500px) { .dc-phases { flex-direction: column; } }
.dc-phase {
  flex: 1;
  background: rgba(15,15,20,0.7);
  border: 1px solid var(--dc-border);
  border-radius: var(--dc-radius-sm);
  padding: 18px;
}
.dc-phase h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  font-family: var(--dc-font);
}
.dc-phase--before h4 { color: var(--dc-pink); }
.dc-phase--after h4 { color: var(--dc-teal); }
.dc-phase p { font-size: 13px; color: var(--dc-muted); line-height: 1.6; margin: 0; }

/* ── ACTION SECTION ── */
/* ── ACTIONS IMMERSIVE CONTAINER ── */
.dc-actions-immersive {
  position: relative;
  border-radius: var(--dc-radius);
  overflow: hidden;
  padding: 28px 24px 24px;
  margin: -8px -20px 0;
  background: linear-gradient(165deg, rgba(20,15,35,0.95) 0%, rgba(10,10,18,0.98) 100%);
  border: 1px solid rgba(92,224,216,0.1);
}
.dc-actions-immersive__inner { position: relative; z-index: 3; }

.dc-action-header {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--dc-orange);
  margin: 0 0 4px;
  font-family: var(--dc-font);
}
.dc-action-req {
  font-size: 12px;
  color: var(--dc-muted);
  margin-bottom: 14px;
}

/* Action card */
.dc-action {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15,15,20,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--dc-radius-sm);
  padding: 14px 16px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
}
.dc-action:hover,
.dc-action:active {
  border-color: var(--dc-orange);
  background: rgba(255,163,0,0.04);
}
@media (hover: hover) {
  .dc-action:hover { transform: translateY(-1px); }
}
.dc-action--done {
  border-color: var(--dc-teal) !important;
  background: rgba(92,224,216,0.06) !important;
}
.dc-action__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  color: #000;
  font-weight: 800;
}
.dc-action__icon--orange { background: linear-gradient(135deg, #FFA300, #FF6B00); }
.dc-action__icon--pink { background: linear-gradient(135deg, #FE20B0, #FF6B9D); }
.dc-action__icon--teal { background: linear-gradient(135deg, #5CE0D8, #2BA89E); }
.dc-action__icon--gold { background: linear-gradient(135deg, #FFA300, #E8FF0A); }
.dc-action__icon svg { width: 16px; height: 16px; fill: currentColor; }
.dc-action__label {
  flex: 1;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--dc-text);
}
.dc-action__type {
  font-size: 10px;
  color: var(--dc-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
  font-weight: 600;
}
.dc-action__pts {
  font-size: 12px;
  font-weight: 700;
  color: var(--dc-orange);
  background: rgba(255,163,0,0.1);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  flex-shrink: 0;
}
.dc-action--done .dc-action__pts {
  color: var(--dc-teal);
  background: rgba(92,224,216,0.1);
}
.dc-action__check {
  display: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--dc-teal);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: #000;
  font-weight: 800;
}
.dc-action--done .dc-action__check { display: flex; }

/* Action progress */
.dc-action-progress {
  font-size: 13px;
  color: var(--dc-muted);
  margin: 14px 0 6px;
  font-weight: 500;
}

/* ── BUTTONS ── */
.dc-btn {
  display: block;
  width: 100%;
  padding: 15px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: var(--dc-font);
  transition: all 0.3s;
  text-align: center;
  margin-top: 8px;
}
.dc-btn--primary {
  background: var(--dc-grad);
  color: #000;
}
.dc-btn--primary:hover,
.dc-btn--primary:active {
  filter: brightness(1.1);
  box-shadow: 0 0 28px rgba(255,163,0,0.3);
}
.dc-btn--primary:disabled {
  opacity: 0.2;
  cursor: not-allowed;
  filter: none;
  box-shadow: none;
}
.dc-btn--teal {
  background: linear-gradient(90deg, var(--dc-orange), var(--dc-teal));
  color: #000;
  font-weight: 800;
}
.dc-btn--outline {
  background: transparent;
  border: 1px solid rgba(255,163,0,0.25);
  color: var(--dc-muted);
}
.dc-btn--outline:hover,
.dc-btn--outline:active {
  border-color: var(--dc-orange);
  color: var(--dc-text);
}
.dc-btn--small {
  padding: 10px 24px;
  font-size: 13px;
  width: auto;
  display: inline-block;
}

/* ══════════════════════════════════════════
   IMMERSIVE QUIZ — Paginated answer cards
   ══════════════════════════════════════════ */

/* Container */
/* ══════════════════════════════════════════════════════════════
   SHARED IMMERSIVE BACKGROUND LAYERS
   Used by quiz, actions, survey, receipt containers
   ══════════════════════════════════════════════════════════════ */
.dc-immersive-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.35;
  filter: blur(2px) saturate(1.2);
  pointer-events: none;
}
.dc-immersive-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(254,32,176,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(92,224,216,0.06) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(8,6,18,0.7) 0%, rgba(8,6,18,0.85) 50%, rgba(8,6,18,0.92) 100%);
  pointer-events: none;
}
.dc-immersive-overlay--receipt {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(255,163,0,0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(254,32,176,0.08) 0%, transparent 50%),
    linear-gradient(to bottom, rgba(8,6,18,0.6) 0%, rgba(8,6,18,0.8) 50%, rgba(8,6,18,0.9) 100%);
}
.dc-immersive-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

/* Ambient floating particle */
.dc-ambient-particle {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  animation: dcAmbientFloat linear infinite;
  opacity: 0;
}
@keyframes dcAmbientFloat {
  0%   { transform: translateY(0) translateX(0) rotate(0deg) scale(0.6); opacity: 0; }
  10%  { opacity: 0.5; }
  50%  { opacity: 0.35; transform: translateY(-45vh) translateX(var(--drift, 0px)) rotate(180deg) scale(1); }
  90%  { opacity: 0.15; }
  100% { transform: translateY(-90vh) translateX(calc(var(--drift, 0px) * 1.5)) rotate(360deg) scale(0.5); opacity: 0; }
}

/* ══════════════════════════════════════════════════════════════
   QUIZ IMMERSIVE
   ══════════════════════════════════════════════════════════════ */
.dc-quiz-immersive {
  position: relative;
  min-height: 420px;
  padding: 32px 0 20px;
  border-radius: var(--dc-radius);
  overflow: hidden;
  background: linear-gradient(165deg, rgba(20,15,35,0.95) 0%, rgba(10,10,18,0.98) 100%);
  border: 1px solid rgba(255,163,0,0.12);
}

/* Progress dots row */
.dc-quiz-immersive__progress,
.dc-quiz-immersive__counter,
.dc-quiz-immersive__deck { position: relative; z-index: 3; }

.dc-quiz-immersive__progress {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 8px;
}
.dc-quiz-immersive__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.dc-quiz-immersive__dot--active {
  background: var(--dc-orange);
  box-shadow: 0 0 10px rgba(255,163,0,0.5);
  transform: scale(1.25);
}
.dc-quiz-immersive__dot--done {
  background: var(--dc-teal);
  box-shadow: 0 0 8px rgba(92,224,216,0.4);
}

/* Counter text */
.dc-quiz-immersive__counter {
  text-align: center;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
}

/* Deck — holds the current question card */
.dc-quiz-immersive__deck {
  transition: opacity 0.3s, transform 0.3s;
}
.dc-quiz-immersive__deck--exit {
  opacity: 0;
  transform: translateX(-30px);
}
.dc-quiz-immersive__deck--enter {
  animation: dcQuizSlideIn 0.4s cubic-bezier(0.22,1,0.36,1) forwards;
}

@keyframes dcQuizSlideIn {
  from { opacity: 0; transform: translateX(30px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Question card */
.dc-quiz-card {
  padding: 0 24px 20px;
}
.dc-quiz-card__q {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--dc-text);
  margin-bottom: 24px;
  text-align: center;
  font-family: var(--dc-font);
}

/* Answer cards — paginated, one visible at a time */
.dc-quiz-card__answers {
  position: relative;
  min-height: 140px;
  overflow: hidden;
}
.dc-quiz-card__answer {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(30,28,45,0.9), rgba(20,18,32,0.95));
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s, opacity 0.3s;
  opacity: 0;
  transform: translateX(80px);
  pointer-events: none;
}
.dc-quiz-card__answer--active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}
.dc-quiz-card__answer--active:hover {
  border-color: rgba(255,163,0,0.35);
  box-shadow: 0 4px 24px rgba(255,163,0,0.08);
  transform: translateY(-2px);
}

/* Slide animations */
.dc-quiz-card__answer--exit-left {
  animation: dcAnswerExitLeft 0.35s ease forwards;
}
.dc-quiz-card__answer--exit-right {
  animation: dcAnswerExitRight 0.35s ease forwards;
}
.dc-quiz-card__answer--enter-right {
  animation: dcAnswerEnterRight 0.35s cubic-bezier(0.22,1,0.36,1) forwards;
}
.dc-quiz-card__answer--enter-left {
  animation: dcAnswerEnterLeft 0.35s cubic-bezier(0.22,1,0.36,1) forwards;
}

@keyframes dcAnswerExitLeft {
  to { opacity: 0; transform: translateX(-80px); }
}
@keyframes dcAnswerExitRight {
  to { opacity: 0; transform: translateX(80px); }
}
@keyframes dcAnswerEnterRight {
  from { opacity: 0; transform: translateX(80px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes dcAnswerEnterLeft {
  from { opacity: 0; transform: translateX(-80px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Answer letter badge */
.dc-quiz-card__answer-letter {
  flex-shrink: 0;
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,163,0,0.15), rgba(255,163,0,0.05));
  color: var(--dc-orange);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.5px;
  border: 1px solid rgba(255,163,0,0.2);
}
.dc-quiz-card__answer-text {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

/* Answer nav (prev/next arrows + dots) */
.dc-quiz-card__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 20px 0 16px;
}
.dc-quiz-card__arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.6);
  font-size: 22px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.dc-quiz-card__arrow:hover {
  background: rgba(255,163,0,0.1);
  border-color: rgba(255,163,0,0.3);
  color: var(--dc-orange);
}
.dc-quiz-card__answer-dots {
  display: flex;
  gap: 8px;
}
.dc-quiz-card__adot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transition: all 0.3s;
}
.dc-quiz-card__adot--active {
  background: var(--dc-orange);
  transform: scale(1.3);
}

/* Select answer button */
.dc-quiz-card__select {
  display: block;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--dc-orange), #ff8c00);
  color: #000;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.3px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.dc-quiz-card__select:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,163,0,0.35);
}
.dc-quiz-card__select:active {
  transform: scale(0.98);
}

/* Correct/wrong states on answer card */
.dc-quiz-card__answer--correct {
  border-color: var(--dc-teal) !important;
  background: linear-gradient(135deg, rgba(92,224,216,0.15), rgba(92,224,216,0.05)) !important;
  box-shadow: 0 0 30px rgba(92,224,216,0.2);
}
.dc-quiz-card__answer--correct .dc-quiz-card__answer-letter {
  background: var(--dc-teal);
  color: #000;
  border-color: var(--dc-teal);
}
.dc-quiz-card__answer--correct .dc-quiz-card__answer-text {
  color: #fff;
  font-weight: 700;
}
.dc-quiz-card__answer--wrong {
  border-color: var(--dc-danger) !important;
  background: linear-gradient(135deg, rgba(255,68,68,0.12), rgba(255,68,68,0.04)) !important;
  animation: dcShake 0.5s ease;
}
.dc-quiz-card__answer--wrong .dc-quiz-card__answer-letter {
  background: var(--dc-danger);
  color: #fff;
  border-color: var(--dc-danger);
}
.dc-quiz-card__answer--wrong .dc-quiz-card__answer-text {
  color: rgba(255,255,255,0.5);
  text-decoration: line-through;
}

/* Feedback */
.dc-quiz-card__feedback {
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  display: none;
  opacity: 0;
  transform: translateY(8px);
}
.dc-quiz-card__feedback--show {
  display: block;
  animation: dcFeedbackReveal 0.4s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes dcFeedbackReveal {
  to { opacity: 1; transform: translateY(0); }
}
.dc-quiz-card__feedback--correct {
  background: rgba(92,224,216,0.08);
  color: var(--dc-teal);
  border: 1px solid rgba(92,224,216,0.15);
}
.dc-quiz-card__feedback--wrong {
  background: rgba(255,68,68,0.06);
  color: var(--dc-danger);
  border: 1px solid rgba(255,68,68,0.12);
}
.dc-quiz-card__fb-icon {
  font-weight: 800;
  font-size: 15px;
  margin-right: 4px;
}
.dc-quiz-card__fb-icon--wrong { color: var(--dc-danger); }

/* ── SURVEY IMMERSIVE CONTAINER ── */
.dc-survey-immersive {
  position: relative;
  border-radius: var(--dc-radius);
  overflow: hidden;
  padding: 32px 24px 24px;
  margin: -8px -20px 0;
  background: linear-gradient(165deg, rgba(20,15,35,0.95) 0%, rgba(10,10,18,0.98) 100%);
  border: 1px solid rgba(254,32,176,0.1);
}
.dc-survey-immersive__inner { position: relative; z-index: 3; }

/* ── RECEIPT IMMERSIVE CONTAINER ── */
.dc-receipt-immersive {
  position: relative;
  border-radius: var(--dc-radius);
  overflow: hidden;
  padding: 32px 24px 24px;
  margin: -8px -20px 0;
  min-height: 500px;
  background: linear-gradient(165deg, rgba(20,15,35,0.95) 0%, rgba(10,10,18,0.98) 100%);
  border: 1px solid rgba(255,163,0,0.15);
}
.dc-receipt-immersive__inner { position: relative; z-index: 3; }
.dc-receipt__badge {
  font-size: 48px;
  text-align: center;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 20px rgba(255,163,0,0.5));
  animation: dcBadgePulse 2s ease-in-out infinite;
}
@keyframes dcBadgePulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(255,163,0,0.5)); }
  50% { transform: scale(1.08); filter: drop-shadow(0 0 30px rgba(255,163,0,0.7)); }
}

/* ── LEARN PANEL VIDEO BACKGROUND ── */
.dc-learn-panel__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  object-fit: cover;
  z-index: 0;
  opacity: 0.3;
  filter: blur(1px) saturate(1.3);
  mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
  pointer-events: none;
}
.dc-learn-panel__header,
.dc-learn-panel__body,
.dc-learn-panel__quiz,
.dc-learn-panel__pages { position: relative; z-index: 2; }

/* Portal-style particles (emoji mushrooms, moons, etc) */
.dc-quiz-particle {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  line-height: 1;
  animation: dcParticleBurst 0.9s cubic-bezier(0.22,1,0.36,1) forwards;
}
@keyframes dcParticleBurst {
  0%   { opacity: 1; transform: translate(0, 0) scale(1) rotate(0deg); }
  100% { opacity: 0; transform: translate(var(--tx), var(--ty)) scale(0.3) rotate(var(--rot, 180deg)); }
}

/* ── SURVEY ── */
.dc-survey-group {
  margin-bottom: 28px;
}
.dc-survey__q {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.4;
  font-family: var(--dc-font);
  color: var(--dc-text);
}
.dc-survey__option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--dc-radius-sm);
  margin-bottom: 6px;
  cursor: pointer;
  font-size: 13px;
  color: var(--dc-muted);
  background: rgba(15,15,20,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-family: inherit;
  transition: all 0.2s;
}
.dc-survey__option:hover,
.dc-survey__option:active {
  border-color: var(--dc-orange);
  color: var(--dc-text);
}
.dc-survey__option--selected {
  border-color: var(--dc-orange) !important;
  background: rgba(255,163,0,0.08) !important;
  color: var(--dc-text) !important;
}

/* ── PILLAR SUMMARY ── */
.dc-pillars {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}
.dc-pillar {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(15,15,20,0.7);
  border: 1px solid var(--dc-border);
  border-radius: var(--dc-radius-sm);
  padding: 18px;
}
.dc-pillar__num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--dc-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  flex-shrink: 0;
  color: #fff;
  font-family: var(--dc-font);
}
.dc-pillar h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  font-family: var(--dc-font);
  color: var(--dc-text);
}
.dc-pillar p { font-size: 13px; color: var(--dc-muted); line-height: 1.5; margin: 0; }

/* ── CELEBRATION ── */
.dc-celebration {
  text-align: center;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--dc-radius);
}
.dc-celebration__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}
.dc-celebration__inner {
  position: relative;
  z-index: 1;
  padding: 36px 20px;
}
.dc-celebration__badge {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--dc-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 40px;
  box-shadow: 0 0 48px rgba(255,163,0,0.3), 0 0 16px rgba(254,32,176,0.2);
  animation: dcPulse 2s ease infinite;
}
.dc-celebration h2 {
  font-size: 26px;
  margin-bottom: 8px;
  font-family: var(--dc-font);
}
.dc-celebration__sub {
  color: var(--dc-muted);
  font-size: 14px;
  margin-bottom: 4px;
}
.dc-celebration__pts {
  font-size: 22px;
  font-weight: 800;
  color: var(--dc-orange);
  margin: 14px 0;
  font-family: var(--dc-font);
}
.dc-celebration__unlock {
  font-size: 14px;
  color: var(--dc-muted);
  margin: 16px 0;
}

/* ── RECEIPT ── */
.dc-receipt {
  background: rgba(8,8,12,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,163,0,0.2);
  border-radius: var(--dc-radius);
  padding: 28px 24px;
  margin: 0 0 20px;
  text-align: center;
}
.dc-receipt__title {
  font-size: 13px;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
  font-family: var(--dc-font);
  font-weight: 800;
  background: var(--dc-grad-full);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dc-receipt__row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-size: 14px;
}
.dc-receipt__row:last-child { border: none; }
.dc-receipt__label { color: var(--dc-muted); }
.dc-receipt__value { font-weight: 600; color: var(--dc-text); }
.dc-receipt__msg {
  font-size: 14px;
  color: var(--dc-teal);
  margin-top: 20px;
  line-height: 1.6;
  font-weight: 500;
}

/* ── EXPLODING OFFER ── */
.dc-offer {
  background: rgba(255,163,0,0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid var(--dc-orange);
  border-radius: var(--dc-radius);
  padding: 28px;
  margin: 0 0 16px;
  text-align: center;
  animation: dcGlow 2s infinite;
}
.dc-offer h3 {
  color: var(--dc-orange);
  font-size: 18px;
  margin-bottom: 8px;
  font-family: var(--dc-font);
}
.dc-offer p {
  font-size: 14px;
  color: var(--dc-muted);
  margin-bottom: 16px;
}
.dc-offer__timer {
  font-size: 32px;
  font-weight: 900;
  color: var(--dc-orange);
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
  font-family: var(--dc-font);
}

/* ── GLOW DIVIDER ── */
.dc-divider {
  height: 1px;
  background: var(--dc-grad);
  opacity: 0.25;
  margin: 32px 0;
  border-radius: 1px;
}

/* ── FLOATING POINTS ── */
.dc-float-pts {
  position: fixed;
  pointer-events: none;
  z-index: 200;
  font-weight: 800;
  font-size: 18px;
  color: var(--dc-orange);
  font-family: var(--dc-font);
  animation: dcFloatUp 1.3s ease forwards;
  text-shadow: 0 2px 12px rgba(255,163,0,0.4);
}

/* ── LEARN OVERLAY (bottom sheet) ── */
.dc-learn-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  /* Prevent body scroll through overlay */
  overscroll-behavior: contain;
  touch-action: none;
}
.dc-learn-panel {
  width: 100%;
  max-width: 540px;
  max-height: 85vh;
  max-height: 85svh;
  background: rgba(12,12,14,0.98);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border: 1px solid rgba(255,163,0,0.2);
  border-bottom: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: dcSlideUp 0.35s ease-out;
  /* Allow touch within the panel */
  touch-action: auto;
}
.dc-learn-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-shrink: 0;
}
.dc-learn-panel__title {
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  font-family: var(--dc-font);
}
.dc-learn-panel__close {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  color: var(--dc-muted);
  font-family: var(--dc-font);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 14px;
  line-height: 1;
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s, color 0.2s;
}
.dc-learn-panel__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  /* Allow scrolling within the panel on mobile */
  touch-action: pan-y;
}
.dc-learn-panel__body h4 {
  color: var(--dc-orange);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 20px 0 8px;
  font-weight: 700;
}
.dc-learn-panel__body h4:first-child { margin-top: 0; }
.dc-learn-panel__body p { margin-bottom: 12px; }
.dc-learn-panel__body ul { padding-left: 18px; margin-bottom: 12px; }
.dc-learn-panel__body li { margin-bottom: 6px; }
.dc-learn-panel__body .dc-learn-source {
  font-size: 11px;
  color: var(--dc-muted);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
/* Learn panel pagination — two-page system */
.dc-learn-panel__pages {
  flex: 1;
  overflow: hidden;
  position: relative;
  min-height: 0;
}
.dc-learn-panel__page {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  opacity: 0;
  transform: translateX(60px);
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22,1,0.36,1);
}
.dc-learn-panel__page--active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}
.dc-learn-panel__page--exit {
  opacity: 0;
  transform: translateX(-60px);
  pointer-events: none;
  position: absolute;
}
.dc-learn-panel__page-cta-wrap {
  padding: 16px 20px 24px;
  flex-shrink: 0;
}
.dc-learn-panel__page-cta {
  display: block;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--dc-orange), #ff8c00);
  color: #000;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--dc-font);
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(255,163,0,0.25);
}
.dc-learn-panel__page-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255,163,0,0.35);
}
.dc-learn-panel__page-cta:active {
  transform: scale(0.98);
}
.dc-learn-panel__quiz-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--dc-orange);
  margin-bottom: 12px;
  font-family: var(--dc-font);
}
.dc-learn-panel__quiz {
  flex-shrink: 0;
  padding: 24px 20px 28px;
  background: rgba(0,0,0,0.3);
}
.dc-learn-panel__quiz-q {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  font-family: var(--dc-font);
}
.dc-learn-panel__quiz-opt {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 14px;
  margin-bottom: 6px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  font-family: var(--dc-font);
  cursor: pointer;
  transition: all 0.2s;
}
.dc-learn-panel__quiz-opt:hover,
.dc-learn-panel__quiz-opt:active {
  background: rgba(255,163,0,0.08);
  border-color: rgba(255,163,0,0.3);
}
.dc-learn-panel__quiz-opt--correct {
  background: rgba(92,224,216,0.15) !important;
  border-color: var(--dc-teal) !important;
  color: var(--dc-teal) !important;
  pointer-events: none;
}
.dc-learn-panel__quiz-opt--wrong {
  background: rgba(255,68,68,0.1) !important;
  border-color: var(--dc-danger) !important;
  color: var(--dc-danger) !important;
  pointer-events: none;
  opacity: 0.5;
}
.dc-learn-panel__result {
  text-align: center;
  padding: 12px 0 0;
  font-weight: 700;
  font-size: 14px;
  color: var(--dc-teal);
  font-family: var(--dc-font);
}

/* ── VIDEO FULLSCREEN ── */
.dc-video-fs {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 100svh;
  z-index: 250;
  background: #000;
  display: flex;
  flex-direction: column;
  /* Prevent body scroll behind video */
  overscroll-behavior: contain;
}
.dc-video-fs iframe {
  flex: 1;
  width: 100%;
  min-height: 0;
  border: none;
}
.dc-video-fs__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: rgba(0,0,0,0.95);
}
.dc-video-fs__timer {
  color: rgba(255,255,255,0.35);
  font-size: 12px;
  font-family: var(--dc-font);
  font-variant-numeric: tabular-nums;
  min-width: 42px;
}
.dc-video-fs__progress {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}
.dc-video-fs__progress-fill {
  height: 100%;
  width: 0%;
  background: var(--dc-orange);
  border-radius: 2px;
  transition: width 1s linear;
}
.dc-video-fs__close {
  position: absolute;
  top: 12px;
  right: 12px;
  height: 40px;
  padding: 0 16px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-family: var(--dc-font);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.dc-video-fs__close span { font-size: 13px; font-weight: 500; }
.dc-video-fs__close:hover { background: rgba(0,0,0,0.8); color: #fff; }
.dc-video-fs__done {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
  border: none;
  font-family: var(--dc-font);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 24px;
  border-radius: 8px;
  cursor: not-allowed;
  transition: all 0.4s;
  white-space: nowrap;
  min-height: 44px;
}
.dc-video-fs__done--show {
  background: var(--dc-orange);
  color: #000;
  cursor: pointer;
  pointer-events: auto;
}
.dc-video-fs__done--show:hover { filter: brightness(1.1); }

/* ══════════════════════════════════════════════════════════════
   TRUE / FALSE — Tinder-style swipe cards
   ══════════════════════════════════════════════════════════════ */
.dc-truefalse {
  position: relative;
  min-height: 440px;
  padding: 32px 0 20px;
  border-radius: var(--dc-radius);
  overflow: hidden;
  background: linear-gradient(165deg, rgba(20,15,35,0.95) 0%, rgba(10,10,18,0.98) 100%);
  border: 1px solid rgba(255,163,0,0.12);
}
.dc-truefalse__inner { position: relative; z-index: 3; padding: 0 24px; }
.dc-truefalse__header {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--dc-orange);
  text-align: center;
  margin-bottom: 4px;
  font-family: var(--dc-font);
}
.dc-truefalse__sub {
  font-size: 13px;
  color: var(--dc-muted);
  text-align: center;
  margin-bottom: 16px;
}
.dc-truefalse__counter {
  text-align: center;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  margin-bottom: 20px;
}
.dc-truefalse__deck {
  position: relative;
  min-height: 200px;
  perspective: 600px;
}
.dc-truefalse__card {
  display: none;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(30,28,45,0.95), rgba(20,18,32,0.98));
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s;
  user-select: none;
}
.dc-truefalse__card--active {
  display: block;
}
.dc-truefalse__card-emoji {
  font-size: 42px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 12px rgba(255,163,0,0.3));
}
.dc-truefalse__card-text {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  font-family: var(--dc-font);
}
.dc-truefalse__card-hint {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  margin-top: 16px;
  letter-spacing: 1px;
}
.dc-truefalse__card--correct {
  border-color: var(--dc-teal) !important;
  background: linear-gradient(135deg, rgba(92,224,216,0.15), rgba(92,224,216,0.05)) !important;
}
.dc-truefalse__card--wrong {
  border-color: var(--dc-danger) !important;
  background: linear-gradient(135deg, rgba(255,68,68,0.12), rgba(255,68,68,0.04)) !important;
}
.dc-truefalse__card--exit-right {
  animation: dcTfExitRight 0.5s ease forwards;
}
.dc-truefalse__card--exit-left {
  animation: dcTfExitLeft 0.5s ease forwards;
}
@keyframes dcTfExitRight {
  to { opacity: 0; transform: translateX(120px) rotate(15deg); }
}
@keyframes dcTfExitLeft {
  to { opacity: 0; transform: translateX(-120px) rotate(-15deg); }
}
.dc-truefalse__buttons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.dc-truefalse__btn {
  flex: 1;
  padding: 14px;
  border: 2px solid;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 800;
  font-family: var(--dc-font);
  cursor: pointer;
  transition: all 0.2s;
}
.dc-truefalse__btn--false {
  background: rgba(255,68,68,0.08);
  border-color: rgba(255,68,68,0.3);
  color: var(--dc-danger);
}
.dc-truefalse__btn--false:hover,
.dc-truefalse__btn--false:active {
  background: rgba(255,68,68,0.15);
  border-color: var(--dc-danger);
}
.dc-truefalse__btn--true {
  background: rgba(92,224,216,0.08);
  border-color: rgba(92,224,216,0.3);
  color: var(--dc-teal);
}
.dc-truefalse__btn--true:hover,
.dc-truefalse__btn--true:active {
  background: rgba(92,224,216,0.15);
  border-color: var(--dc-teal);
}
.dc-truefalse__result {
  text-align: center;
  margin-top: 16px;
}
.dc-truefalse__score {
  font-size: 20px;
  font-weight: 800;
  color: var(--dc-teal);
  font-family: var(--dc-font);
}

/* ══════════════════════════════════════════════════════════════
   FLIP CARDS — Tap to reveal
   ══════════════════════════════════════════════════════════════ */
.dc-flipcards {
  position: relative;
  padding: 32px 0 20px;
  border-radius: var(--dc-radius);
  overflow: hidden;
  background: linear-gradient(165deg, rgba(20,15,35,0.95) 0%, rgba(10,10,18,0.98) 100%);
  border: 1px solid rgba(254,32,176,0.12);
}
.dc-flipcards__inner { position: relative; z-index: 3; padding: 0 24px; }
.dc-flipcards__header {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--dc-pink);
  text-align: center;
  margin-bottom: 4px;
  font-family: var(--dc-font);
}
.dc-flipcards__sub {
  font-size: 13px;
  color: var(--dc-muted);
  text-align: center;
  margin-bottom: 20px;
}
.dc-flipcards__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (max-width: 380px) {
  .dc-flipcards__grid { grid-template-columns: 1fr; }
}
.dc-flipcard {
  perspective: 600px;
  cursor: pointer;
  min-height: 140px;
}
.dc-flipcard__inner {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 140px;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  transform-style: preserve-3d;
}
.dc-flipcard--flipped .dc-flipcard__inner {
  transform: rotateY(180deg);
}
.dc-flipcard__front,
.dc-flipcard__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
}
.dc-flipcard__front {
  background: linear-gradient(135deg, rgba(30,28,45,0.95), rgba(20,18,32,0.98));
  border: 1px solid rgba(255,163,0,0.2);
}
.dc-flipcard__front-emoji {
  font-size: 28px;
  margin-bottom: 8px;
}
.dc-flipcard__front-label {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  font-family: var(--dc-font);
  text-align: center;
}
.dc-flipcard__tap-hint {
  font-size: 9px;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.2);
  margin-top: 8px;
  font-weight: 700;
}
.dc-flipcard__back {
  background: linear-gradient(135deg, rgba(92,224,216,0.12), rgba(254,32,176,0.08));
  border: 1px solid rgba(92,224,216,0.25);
  transform: rotateY(180deg);
  padding: 14px 10px;
  justify-content: flex-start;
  padding-top: 20px;
}
.dc-flipcard__back-text {
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  line-height: 1.55;
  text-align: center;
  font-weight: 500;
}
.dc-flipcards__progress {
  text-align: center;
  font-size: 12px;
  color: var(--dc-muted);
  margin-top: 16px;
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════════
   SPOTLIGHT — Full-bleed quote/moment
   ══════════════════════════════════════════════════════════════ */
.dc-spotlight {
  position: relative;
  min-height: 340px;
  border-radius: var(--dc-radius);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dc-spotlight__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: blur(2px) saturate(1.3);
  z-index: 0;
}
.dc-spotlight__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}
.dc-spotlight__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 28px;
  max-width: 480px;
}
.dc-spotlight__emoji {
  font-size: 48px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 16px rgba(255,163,0,0.4));
  animation: dcPulse 2.5s ease infinite;
}
.dc-spotlight__quote {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  font-family: var(--dc-font);
  font-style: italic;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.dc-spotlight__attr {
  font-size: 13px;
  color: var(--dc-orange);
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.dc-spotlight__body {
  margin-top: 12px;
}

/* ══════════════════════════════════════════════════════════════
   REVEAL — Accordion-style progressive disclosure
   ══════════════════════════════════════════════════════════════ */
.dc-reveal {
  position: relative;
  padding: 32px 0 20px;
  border-radius: var(--dc-radius);
  overflow: hidden;
  background: linear-gradient(165deg, rgba(20,15,35,0.95) 0%, rgba(10,10,18,0.98) 100%);
  border: 1px solid rgba(92,224,216,0.12);
}
.dc-reveal__inner {
  position: relative;
  z-index: 3;
  padding: 0 24px;
}
.dc-reveal__inner h2 {
  text-align: center;
  margin-bottom: 8px;
}
.dc-reveal__sub {
  text-align: center;
  font-size: 13px;
  color: var(--dc-muted) !important;
  margin-bottom: 24px !important;
}
.dc-reveal__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dc-reveal__item {
  background: rgba(15,15,20,0.7);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.dc-reveal__item--open {
  border-color: rgba(92,224,216,0.3);
}
.dc-reveal__item-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  transition: background 0.2s;
  user-select: none;
}
.dc-reveal__item-header:hover,
.dc-reveal__item-header:active {
  background: rgba(255,255,255,0.03);
}
.dc-reveal__item-emoji {
  font-size: 22px;
  flex-shrink: 0;
}
.dc-reveal__item-title {
  flex: 1;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  font-family: var(--dc-font);
}
.dc-reveal__item-toggle {
  font-size: 20px;
  color: var(--dc-muted);
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.dc-reveal__item--open .dc-reveal__item-toggle {
  transform: rotate(45deg);
  color: var(--dc-teal);
}
.dc-reveal__item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0 18px;
  font-size: 13px;
  color: var(--dc-muted);
  line-height: 1.65;
}
.dc-reveal__item--open .dc-reveal__item-body {
  max-height: 200px;
  padding: 0 18px 16px;
}

/* ── PILLS ── */
.dc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 20px;
}
.dc-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--dc-orange);
  background: rgba(255,163,0,0.08);
  border: 1px solid rgba(255,163,0,0.2);
  padding: 6px 16px;
  border-radius: 24px;
}

/* ── ANIMATIONS ── */
@keyframes dcFloatUp {
  0% { opacity: 1; transform: translateY(0) scale(1); }
  60% { opacity: 1; transform: translateY(-30px) scale(1.2); }
  100% { opacity: 0; transform: translateY(-70px) scale(0.9); }
}
@keyframes dcShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}
@keyframes dcPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}
@keyframes dcGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(255,163,0,0.15); }
  50% { box-shadow: 0 0 44px rgba(255,163,0,0.35); }
}
@keyframes dcSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
@keyframes dcFadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — Mobile-first approach
   Base styles above = mobile
   Scale up below for tablet/desktop
   ═══════════════════════════════════════════ */

/* ── MOBILE (base, ≤767px) ── */
@media (max-width: 767px) {
  /* Top bar — compact */
  .dc-topbar__inner { padding: 10px 16px; }
  .dc-topbar__brand { font-size: 11px; letter-spacing: 2px; }
  .dc-topbar__back {
    font-size: 13px;
    padding: 8px 10px;
    min-height: 44px;
    min-width: 44px;
  }
  .dc-topbar__pts { font-size: 13px; }

  /* Hero — shorter on mobile, prevent overflow */
  .dc-hero { height: 240px; }
  .dc-hero__title { font-size: 22px; }
  .dc-hero__sub { font-size: 13px; }
  .dc-hero__content { padding: 0 16px 20px; }
  .dc-hero__pill { font-size: 10px; padding: 4px 10px; }

  /* Roadmap — tighter spacing, bigger touch targets */
  .dc-roadmap { padding: 14px 10px 10px; }
  .dc-roadmap__node {
    width: 38px;
    height: 38px;
    font-size: 13px;
    /* Expand touch target beyond visual circle */
    position: relative;
  }
  .dc-roadmap__node::after {
    content: '';
    position: absolute;
    inset: -6px;
  }
  .dc-roadmap__label { font-size: 9px; max-width: 56px; }
  .dc-roadmap__line { top: 19px; left: calc(50% + 22px); right: calc(-50% + 22px); }

  /* Main layout — tighter padding, prevent overflow */
  .dc-main {
    padding: 0 10px;
    overflow-x: hidden;
  }

  /* Step cards — compact, no backdrop-filter on mobile (perf) */
  .dc-step {
    padding: 20px 16px;
    margin-bottom: 14px;
    border-radius: 12px;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .dc-step h2 { font-size: 20px; margin-bottom: 10px; }
  .dc-step h3 { font-size: 15px; }
  .dc-step p { font-size: 14px; line-height: 1.6; }

  /* Section images — contained, no overflow */
  .dc-section-img {
    width: calc(100% + 32px);
    margin: -20px -16px 18px;
    height: 160px;
  }
  .dc-break-img { height: 100px; }

  /* Icon grid — fits 3-col on small phones */
  .dc-icon-grid { gap: 8px; }
  .dc-icon-grid__item { padding: 14px 6px; }
  .dc-icon-grid__icon { width: 40px; height: 40px; font-size: 18px; }
  .dc-icon-grid__label { font-size: 11px; }

  /* Stats row — stack on very small screens */
  .dc-stats { gap: 8px; }
  .dc-stat__num { font-size: 26px; }
  .dc-stat__label { font-size: 11px; }
  .dc-stat { padding: 14px 10px; min-width: 90px; }

  /* Callout */
  .dc-callout { padding: 16px; }
  .dc-callout__text { font-size: 15px; }

  /* Action cards — 56px min touch target, better label wrapping */
  .dc-action {
    padding: 14px 14px;
    gap: 10px;
    min-height: 56px;
    /* Prevent layout shift from long labels */
    align-items: center;
  }
  .dc-action__icon { width: 36px; height: 36px; font-size: 15px; }
  .dc-action__label {
    font-size: 13px;
    /* Prevent text from forcing horizontal overflow */
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }
  .dc-action__pts { font-size: 11px; padding: 4px 10px; }

  /* Buttons — 48px min height for thumb-friendly tapping */
  .dc-btn {
    padding: 15px;
    font-size: 15px;
    min-height: 48px;
    border-radius: 28px;
    /* Prevent double-tap zoom on buttons */
    touch-action: manipulation;
  }
  .dc-btn--small {
    padding: 10px 22px;
    font-size: 13px;
    min-height: 44px;
  }

  /* Immersive containers — mobile */
  .dc-actions-immersive,
  .dc-survey-immersive,
  .dc-receipt-immersive { padding: 20px 16px; margin: -4px -16px 0; border-radius: 16px; }
  .dc-immersive-bg { opacity: 0.25; }

  /* Quiz — mobile optimizations */
  .dc-quiz-immersive { min-height: 380px; padding: 24px 0 16px; }
  .dc-quiz-card { padding: 0 16px 16px; }
  .dc-quiz-card__q { font-size: 16px; }
  .dc-quiz-card__answer { padding: 16px 18px; gap: 12px; }
  .dc-quiz-card__answer-letter { width: 36px; height: 36px; font-size: 14px; border-radius: 10px; }
  .dc-quiz-card__answer-text { font-size: 13px; }
  .dc-quiz-card__select { padding: 14px; font-size: 14px; touch-action: manipulation; }
  .dc-quiz-card__arrow { touch-action: manipulation; }

  /* Survey — bigger touch targets */
  .dc-survey__q { font-size: 14px; }
  .dc-survey__option {
    padding: 12px 16px;
    font-size: 13px;
    min-height: 44px;
    touch-action: manipulation;
    display: flex;
    align-items: center;
  }

  /* Highlights */
  .dc-highlight { padding: 18px; }
  .dc-highlight__phone { font-size: 24px; }
  .dc-highlight__title { font-size: 12px; }

  /* Warnings */
  .dc-warning { padding: 12px 14px; font-size: 12px; }

  /* Celebration */
  .dc-celebration__inner { padding: 32px 16px; }
  .dc-celebration__badge { width: 80px; height: 80px; font-size: 36px; }
  .dc-celebration h2 { font-size: 24px; }
  .dc-celebration__pts { font-size: 20px; }

  /* Receipt */
  .dc-receipt { padding: 20px 16px; }
  .dc-receipt__row { font-size: 13px; padding: 10px 0; }

  /* Offer */
  .dc-offer { padding: 20px; }
  .dc-offer h3 { font-size: 16px; }
  .dc-offer__timer { font-size: 28px; }

  /* Learn panel — taller on mobile, better scroll */
  .dc-learn-panel {
    max-height: 92svh;
    max-height: 92vh; /* fallback */
  }
  .dc-learn-panel__body {
    padding: 16px;
    font-size: 14px;
    /* Momentum scrolling on iOS */
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }
  .dc-learn-panel__quiz { padding: 14px 16px 16px; }
  .dc-learn-panel__quiz-opt {
    min-height: 44px;
    padding: 12px 14px;
    touch-action: manipulation;
    display: flex;
    align-items: center;
  }

  /* Pillar summary */
  .dc-pillar { padding: 14px; gap: 12px; }
  .dc-pillar__num { width: 32px; height: 32px; font-size: 13px; }
  .dc-pillar h4 { font-size: 14px; }
  .dc-pillar p { font-size: 12px; }

  /* Two-col / Phase cards */
  .dc-col-card { padding: 14px; }
  .dc-col-card h4 { font-size: 13px; }
  .dc-col-card p { font-size: 12px; }
  .dc-phase { padding: 14px; }

  /* Video fullscreen — mobile safe areas */
  .dc-video-fs__close {
    top: max(12px, env(safe-area-inset-top, 12px));
    right: max(12px, env(safe-area-inset-right, 12px));
  }
  .dc-video-fs__bar {
    padding: 14px max(20px, env(safe-area-inset-right, 20px)) calc(14px + env(safe-area-inset-bottom, 0px)) max(20px, env(safe-area-inset-left, 20px));
  }

  /* Fullscreen step — mobile phone/stat sizing */
  .dc-fullscreen__phone {
    font-size: 22px;
    padding: 14px 0;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
  }
  .dc-fullscreen__stats { gap: 12px; flex-wrap: wrap; }
  .dc-fullscreen__stat-num { font-size: 26px; }
  .dc-fullscreen__stat-label { font-size: 11px; }

  /* Floating points — smaller on mobile */
  .dc-float-pts { font-size: 16px; }

  /* True/False — mobile */
  .dc-truefalse { min-height: 400px; padding: 24px 0 16px; }
  .dc-truefalse__inner { padding: 0 16px; }
  .dc-truefalse__card { padding: 24px 18px; }
  .dc-truefalse__card-emoji { font-size: 36px; }
  .dc-truefalse__card-text { font-size: 15px; }
  .dc-truefalse__btn { padding: 14px; font-size: 14px; min-height: 48px; touch-action: manipulation; }

  /* Flip cards — mobile */
  .dc-flipcards { padding: 24px 0 16px; }
  .dc-flipcards__inner { padding: 0 16px; }
  .dc-flipcard { min-height: 130px; }
  .dc-flipcard__inner { min-height: 130px; }
  .dc-flipcard__front-emoji { font-size: 24px; }
  .dc-flipcard__front-label { font-size: 13px; }
  .dc-flipcard__back-text { font-size: 11px; }

  /* Spotlight — mobile */
  .dc-spotlight { min-height: 300px; }
  .dc-spotlight__content { padding: 32px 20px; }
  .dc-spotlight__quote { font-size: 17px; }
  .dc-spotlight__emoji { font-size: 40px; }

  /* Reveal — mobile */
  .dc-reveal { padding: 24px 0 16px; }
  .dc-reveal__inner { padding: 0 16px; }
  .dc-reveal__item-header { padding: 14px 14px; }
  .dc-reveal__item-title { font-size: 13px; }
}

/* ── SMALL PHONES (≤375px, iPhone SE etc) ── */
@media (max-width: 375px) {
  .dc-hero { height: 200px; }
  .dc-hero__title { font-size: 20px; }
  .dc-hero__content { padding: 0 12px 16px; }
  .dc-main { padding: 0 8px; }
  .dc-step { padding: 16px 14px; }
  .dc-step h2 { font-size: 18px; }
  .dc-swipe__title { font-size: 20px; }
  .dc-swipe__text { font-size: 13px; }
  .dc-swipe__emoji { font-size: 36px; }
  .dc-bigstat__num { font-size: 44px; }
  .dc-fullscreen__phone { font-size: 22px; }
  .dc-fullscreen__stat-num { font-size: 24px; }
  .dc-roadmap__node { width: 34px; height: 34px; font-size: 12px; }
  .dc-roadmap__label { font-size: 8px; max-width: 50px; }
  .dc-celebration__badge { width: 68px; height: 68px; font-size: 30px; }
}

/* ── DESKTOP (≥768px) ── */
@media (min-width: 768px) {
  .dc-hero { height: 420px; }
  .dc-hero__title { font-size: 36px; }
  .dc-step { padding: 36px 32px; }
  .dc-step h2 { font-size: 26px; }
  .dc-section-img {
    width: calc(100% + 64px);
    margin: -36px -32px 28px;
    height: 240px;
  }
}

/* ── SAFE AREA INSETS (notched iPhones, etc) ── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .dc { padding-bottom: calc(100px + env(safe-area-inset-bottom)); }
  .dc-topbar {
    top: calc(var(--nav-height, 64px) + var(--preview-bar-height, 0px) + env(safe-area-inset-top, 0px));
  }
  .dc-learn-panel { padding-bottom: env(safe-area-inset-bottom); }
  .dc-video-fs__bar { padding-bottom: calc(14px + env(safe-area-inset-bottom)); }
  /* Only add safe-area margin to last button in step, not all buttons */
  .dc-step > .dc-btn:last-child { margin-bottom: env(safe-area-inset-bottom, 0px); }
  .dc-celebration .dc-btn { margin-bottom: env(safe-area-inset-bottom, 0px); }
}

/* ── iOS VIEWPORT HEIGHT FIX ── */
/* Use svh (small viewport height) with vh fallback for iOS Safari */
@supports (height: 100svh) {
  .dc-swipe { height: 72svh; }
  .dc-step--fullscreen { min-height: 65svh; }
  .dc-fullscreen { min-height: 65svh; }
}

/* ── BODY SCROLL LOCK — when overlays/modals are open ── */
body.dc-overlay-open {
  overflow: hidden !important;
  position: fixed;
  width: 100%;
  -webkit-overflow-scrolling: auto;
}

/* ── FORCE GPU COMPOSITING for smooth mobile scrolling ── */
.dc-swipe__track,
.dc-swipe__card,
.dc-bigstat__num,
.dc-step--fullscreen,
.dc-fullscreen {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* ── MOBILE TOUCH UTILITIES ── */
/* Prevent accidental zoom on double-tap */
.dc-action,
.dc-quiz-card__answer,
.dc-quiz-card__select,
.dc-quiz-card__arrow,
.dc-survey__option,
.dc-btn,
.dc-roadmap__node,
.dc-swipe__dot,
.dc-learn-panel__quiz-opt {
  touch-action: manipulation;
}

/* Better focus/active states for mobile */
@media (hover: none) {
  .dc-action:active {
    transform: scale(0.98);
    transition: transform 0.1s;
  }
  .dc-quiz-card__answer:active {
    transform: scale(0.98);
  }
  .dc-quiz-card__select:active {
    transform: scale(0.97);
    filter: brightness(0.95);
  }
  .dc-survey__option:active {
    transform: scale(0.98);
    background: rgba(255,163,0,0.08);
  }
  .dc-btn--primary:active {
    transform: scale(0.97);
    filter: brightness(0.95);
  }
  /* Remove hover-only styles that cause sticky hover on touch devices */
  .dc-action:hover { transform: none; }
}

/* ═══════════════════════════════════════════════
   SWIPE CARD SYSTEM — Immersive full-screen cards
   Mobile-first: base = phone, scale up for desktop
   ═══════════════════════════════════════════════ */

/* Swipe deck container — mobile-first */
.dc-swipe {
  position: relative;
  width: calc(100% + 32px);
  margin: -20px -16px 0;
  height: 75svh;
  min-height: 360px;
  max-height: 560px;
  overflow: hidden;
  border-radius: 12px;
  touch-action: pan-y pinch-zoom;
  -webkit-user-select: none;
  user-select: none;
  /* Contain overflow from translateX transforms */
  contain: layout style;
}
.dc-swipe__track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: transform;
  height: 100%;
}
.dc-swipe__track--dragging {
  transition: none !important;
}
.dc-swipe__card {
  min-width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 20px 28px;
  height: 100%;
  overflow: hidden;
}

/* Card background video/image */
.dc-swipe__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.dc-swipe__card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(1,1,1,0.05) 0%,
    rgba(1,1,1,0.35) 40%,
    rgba(1,1,1,0.85) 80%,
    rgba(1,1,1,0.95) 100%
  );
  pointer-events: none;
}
.dc-swipe__card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg, rgba(254,32,176,0.12) 0%, rgba(255,163,0,0.08) 50%, rgba(92,224,216,0.1) 100%);
  mix-blend-mode: overlay;
  pointer-events: none;
}
.dc-swipe__content {
  position: relative;
  z-index: 2;
  /* Prevent content from overflowing card on short phones */
  max-height: 60%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
.dc-swipe__emoji {
  font-size: 44px;
  margin-bottom: 10px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}
.dc-swipe__title {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 8px;
  font-family: var(--dc-font);
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.dc-swipe__text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,0.9);
  max-width: 480px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
  /* Prevent long text from overflowing */
  overflow-wrap: break-word;
}

/* Swipe nav — mobile-first with bigger touch targets */
.dc-swipe__nav {
  position: relative;
  z-index: 3;
  padding: 0 20px;
}
.dc-swipe__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 0 2px;
}
.dc-swipe__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,163,0,0.25);
  transition: all 0.3s;
  cursor: pointer;
  /* Bigger touch target via padding */
  padding: 0;
  margin: 0;
  position: relative;
}
.dc-swipe__dot::before {
  content: '';
  position: absolute;
  inset: -8px;
}
.dc-swipe__dot--active {
  background: var(--dc-orange);
  width: 28px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(255,163,0,0.5);
}

/* Swipe hint arrow */
.dc-swipe-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  color: var(--dc-orange);
  padding: 8px 0;
  animation: dcSwipeArrow 1.5s ease-in-out infinite;
}
@keyframes dcSwipeArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(8px); }
}

.dc-swipe__hint {
  text-align: center;
  font-size: 12px;
  color: rgba(255,163,0,0.5);
  padding: 6px 0 0;
  animation: dcSwipeHint 2s ease infinite;
}
@keyframes dcSwipeHint {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* ── BIG STAT CARD (animated counter) — mobile-first ── */
.dc-bigstat {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.dc-bigstat__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
}
.dc-bigstat__content {
  position: relative;
  z-index: 1;
}
.dc-bigstat__num {
  font-size: 56px;
  font-weight: 900;
  font-family: var(--dc-font);
  background: var(--dc-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 12px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.dc-bigstat__num--visible {
  opacity: 1;
  transform: scale(1);
}
.dc-bigstat__label {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.5;
}
.dc-bigstat__sub {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  margin-top: 10px;
  line-height: 1.5;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
}
.dc-bigstat__source {
  font-size: 11px;
  color: rgba(255,255,255,0.3);
  margin-top: 12px;
}

/* ── FULLSCREEN VIDEO STEP — mobile-first ── */
.dc-step--fullscreen {
  background: none !important;
  border: none !important;
  padding: 0 !important;
  position: relative;
  overflow: hidden;
  min-height: 65svh;
  min-height: 65vh; /* fallback */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 12px;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.dc-step--fullscreen .dc-fullvid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.dc-step--fullscreen .dc-fullvid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(1,1,1,0) 0%,
    rgba(1,1,1,0.3) 30%,
    rgba(1,1,1,0.8) 70%,
    rgba(1,1,1,0.95) 100%
  );
  pointer-events: none;
}
.dc-step--fullscreen .dc-fullvid-content {
  position: relative;
  z-index: 2;
  padding: 24px 20px 28px;
}

/* ── FULLSCREEN INLINE (new type render) ── */
.dc-fullscreen {
  position: relative;
  min-height: 65svh;
  min-height: 65vh; /* fallback */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 12px;
}
.dc-fullscreen__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.dc-fullscreen__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
    rgba(1,1,1,0) 0%,
    rgba(1,1,1,0.3) 30%,
    rgba(1,1,1,0.8) 70%,
    rgba(1,1,1,0.95) 100%
  );
  pointer-events: none;
}
.dc-fullscreen__content {
  position: relative;
  z-index: 2;
  padding: 24px 20px 28px;
}
.dc-fullscreen__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 900;
  color: var(--dc-orange);
  text-decoration: none;
  margin: 12px 0 16px;
  font-family: var(--dc-font);
  letter-spacing: 0.5px;
  padding: 12px 0;
  -webkit-tap-highlight-color: transparent;
}
.dc-fullscreen__phone svg {
  width: 24px;
  height: 24px;
  fill: var(--dc-orange);
}
.dc-fullscreen__stats {
  display: flex;
  gap: 16px;
  margin: 12px 0 20px;
}
.dc-fullscreen__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.dc-fullscreen__stat-num {
  font-size: 28px;
  font-weight: 900;
  color: var(--dc-teal);
  font-family: var(--dc-font);
}
.dc-fullscreen__stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ── INTERACTIVE REVEAL CARD ── */
.dc-reveal {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  min-height: 180px;
  margin: 16px 0;
  border: 1px solid var(--dc-border);
  transition: border-color 0.3s;
  -webkit-tap-highlight-color: transparent;
}
.dc-reveal:active { border-color: var(--dc-orange); }
.dc-reveal__front {
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  transition: opacity 0.4s, transform 0.4s;
}
.dc-reveal__back {
  position: absolute;
  inset: 0;
  padding: 24px;
  background: rgba(8,8,12,0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: rotateY(180deg);
  transition: opacity 0.4s, transform 0.4s;
  backface-visibility: hidden;
}
.dc-reveal--flipped .dc-reveal__front {
  opacity: 0;
  transform: rotateY(180deg);
}
.dc-reveal--flipped .dc-reveal__back {
  opacity: 1;
  transform: rotateY(0deg);
}
.dc-reveal__tap {
  font-size: 11px;
  color: var(--dc-orange);
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-top: 12px;
  animation: dcSwipeHint 2s ease infinite;
}

/* ── PILL TAGS (colored tag row) ── */
.dc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}
.dc-tag {
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--dc-font);
}
.dc-tag--orange { background: rgba(255,163,0,0.15); color: var(--dc-orange); border: 1px solid rgba(255,163,0,0.3); }
.dc-tag--pink { background: rgba(254,32,176,0.12); color: var(--dc-pink); border: 1px solid rgba(254,32,176,0.25); }
.dc-tag--teal { background: rgba(92,224,216,0.12); color: var(--dc-teal); border: 1px solid rgba(92,224,216,0.25); }
.dc-tag--lime { background: rgba(232,255,10,0.12); color: var(--dc-lime); border: 1px solid rgba(232,255,10,0.25); }

/* ═══════════════════════════════════════════════
   DESKTOP SCALE-UP for swipe/bigstat/fullscreen
   ═══════════════════════════════════════════════ */
@media (min-width: 768px) {
  .dc-swipe {
    width: calc(100% + 64px);
    margin: -36px -32px 0;
    height: 520px;
    max-height: 600px;
    border-radius: var(--dc-radius);
  }
  .dc-swipe__card {
    padding: 36px 32px 36px;
  }
  .dc-swipe__emoji { font-size: 52px; }
  .dc-swipe__title { font-size: 28px; }
  .dc-swipe__text { font-size: 16px; }
  .dc-bigstat {
    padding: 60px 32px;
    min-height: 320px;
    border-radius: var(--dc-radius);
  }
  .dc-bigstat__num { font-size: 80px; }
  .dc-bigstat__label { font-size: 18px; }
  .dc-bigstat__sub { font-size: 14px; }
  .dc-step--fullscreen {
    min-height: 520px;
    border-radius: var(--dc-radius);
  }
  .dc-step--fullscreen .dc-fullvid-content {
    padding: 36px 32px;
  }
  .dc-fullscreen {
    min-height: 520px;
    border-radius: var(--dc-radius);
  }
  .dc-fullscreen__content {
    padding: 36px 32px;
  }
  .dc-fullscreen__phone { font-size: 28px; }
  .dc-fullscreen__stat-num { font-size: 32px; }
}

/* ============================================
   MDMA 101 — Additional section-specific styles
   Used by mdma101.js rendering engine
   ============================================ */

/* Pullquote */
.dc-pullquote {
  display: block;
  font-style: italic;
  font-size: 1.1em;
  line-height: 1.5;
  border-left: 3px solid var(--dc-pink);
  padding: .75rem 0 .75rem 1.25rem;
  margin: 1rem 0;
  color: var(--dc-text);
  opacity: .9;
}

/* Callout */
.dc-step__callout {
  background: rgba(255,163,0,0.08);
  border: 1px solid rgba(255,163,0,0.25);
  border-radius: var(--dc-radius-xs);
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--dc-muted);
}

/* Key Fact */
.dc-step__keyfact {
  background: linear-gradient(135deg, rgba(254,32,176,0.1), rgba(255,163,0,0.1));
  border: 1px solid var(--dc-border);
  border-radius: var(--dc-radius-sm);
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
}
.dc-step__keyfact-label {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--dc-orange);
  margin-bottom: .35rem;
}
.dc-step__keyfact-text {
  font-size: .95rem;
  line-height: 1.5;
  margin: 0;
  color: var(--dc-text);
}

/* Text blocks */
.dc-step__block {
  margin-bottom: .75rem;
}
.dc-step__block p {
  font-size: .95rem;
  line-height: 1.6;
  color: var(--dc-muted);
  margin: 0;
}
.dc-step__block p strong {
  color: var(--dc-text);
}

/* ── TIMELINE ── */
.dc-step__timeline {
  margin: 1.25rem 0;
  padding-left: 1.25rem;
  border-left: 2px solid rgba(255,163,0,0.2);
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.dc-step__timeline-item {
  position: relative;
  padding-left: .75rem;
}
.dc-step__timeline-item::before {
  content: '';
  position: absolute;
  left: -1.55rem;
  top: .5rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dc-orange);
  box-shadow: 0 0 8px rgba(255,163,0,0.5);
}
.dc-step__timeline-year {
  display: inline-block;
  font-weight: 800;
  font-size: .85rem;
  color: var(--dc-orange);
  letter-spacing: 1px;
  margin-bottom: .15rem;
}
.dc-step__timeline-text {
  font-size: .9rem;
  line-height: 1.5;
  color: var(--dc-muted);
  margin: 0;
}

/* ── EFFECTS LIST ── */
.dc-step__effects {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: 1.25rem 0;
}
.dc-step__effect-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--dc-radius-xs);
  padding: .75rem 1rem;
  transition: border-color .2s, background .2s;
}
.dc-step__effect-item:hover {
  border-color: rgba(255,163,0,0.2);
  background: rgba(255,163,0,0.04);
}
.dc-step__effect-emoji {
  font-size: 1.3rem;
  flex-shrink: 0;
}
.dc-step__effect-text {
  font-size: .9rem;
  color: var(--dc-muted);
}

/* ── RISK CARDS (expandable) ── */
.dc-step__risks {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: 1.25rem 0;
}
.dc-step__risk {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--dc-radius-xs);
  overflow: hidden;
  transition: border-color .2s;
}
.dc-step__risk:hover {
  border-color: rgba(255,68,68,0.25);
}
.dc-step__risk-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .85rem 1rem;
  cursor: pointer;
  user-select: none;
}
.dc-step__risk-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
}
.dc-step__risk-title {
  flex: 1;
  font-weight: 600;
  font-size: .9rem;
  color: var(--dc-text);
}
.dc-step__risk-toggle {
  font-size: 1.2rem;
  color: var(--dc-muted);
  font-weight: 300;
  flex-shrink: 0;
  width: 1.2rem;
  text-align: center;
}
.dc-step__risk-detail {
  padding: 0 1rem .85rem 2.75rem;
}
.dc-step__risk-detail p {
  margin: 0;
  font-size: .85rem;
  line-height: 1.55;
  color: var(--dc-muted);
}

/* ── CHECKLIST ── */
.dc-step__checklist {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: 1.25rem 0;
}
.dc-step__checklist-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  background: rgba(92,224,216,0.04);
  border: 1px solid rgba(92,224,216,0.12);
  border-radius: var(--dc-radius-xs);
  padding: 1rem 1.15rem;
}
.dc-step__checklist-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: .1rem;
}
.dc-step__checklist-item strong {
  display: block;
  font-size: .9rem;
  color: var(--dc-text);
}
.dc-step__checklist-item p {
  font-size: .85rem;
  line-height: 1.5;
  color: var(--dc-muted);
}

/* ── RESEARCH FINDINGS ── */
.dc-step__findings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 1.25rem 0;
}
.dc-step__finding {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--dc-radius-sm);
  padding: 1.25rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .35rem;
}
.dc-step__finding-stat {
  font-size: 2rem;
  font-weight: 900;
  background: var(--dc-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.dc-step__finding-text {
  font-size: .8rem;
  line-height: 1.4;
  color: var(--dc-muted);
}
.dc-step__note {
  margin-top: .5rem;
}
.dc-step__note p {
  font-size: .8rem;
  line-height: 1.5;
  color: var(--dc-muted);
  opacity: .7;
  margin: 0;
}

/* ── Responsive — Findings on mobile ── */
@media (max-width: 480px) {
  .dc-step__findings {
    grid-template-columns: 1fr;
  }
}
