    /* ==================== CONVERSATION SCREENS (Name, Role, Preferences) ==================== */
    .conversation-screen {
      padding-top: 10px;
      min-height: calc(100vh - 100px);
      padding-bottom: 100px;
      overscroll-behavior: none;
      -webkit-overflow-scrolling: auto;
    }

    .chat-container { max-width: 480px; margin: 0 auto; }

    .chat-bubble {
      background: var(--slate-100);
      border-radius: 20px 20px 20px 4px;
      padding: 16px 20px;
      margin-bottom: 20px;
    }

    .chat-bubble p {
      font-size: 1.125rem;
      color: var(--slate-800);
      line-height: 1.5;
      margin: 0;
    }

    .chat-bubble .helper-text {
      font-size: 0.9375rem;
      color: var(--slate-600);
      margin-top: 8px;
    }

    .chat-bubble .name-highlight {
      color: var(--cr-teal-dark);
      font-weight: 600;
    }

    .input-group { margin-bottom: 24px; }

   .text-input {
   width: 100%;
   max-width: 280px;
   margin: 0 auto;
   display: block;
   padding: 18px 20px;
   font-family: inherit;
   font-size: 1.125rem;
   text-align: center;
   border: 2px solid var(--slate-200);
   border-radius: 14px;
   background-color: var(--white);
   color: var(--slate-900);
   outline: none;
   transition: all 0.2s var(--ease-out);
  }

    .text-input::placeholder { color: var(--slate-500); }
    .text-input:hover { border-color: var(--slate-300); }
    .text-input:focus { border-color: var(--cr-teal); box-shadow: 0 0 0 4px var(--cr-teal-muted); }

    /* Role cards */
    .role-options { display: flex; gap: 16px; margin-bottom: 24px; }

    .role-card {
      flex: 1;
      padding: 24px 20px;
      background: var(--white);
      border: 2px solid var(--slate-200);
      border-radius: 16px;
      cursor: pointer;
      transition: all 0.2s var(--ease-out);
      text-align: center;
    }

    .role-card:hover { border-color: var(--slate-300); background: var(--slate-50); }
    .role-card.selected { border-color: var(--cr-teal); background: var(--cr-teal-muted); }

    .role-card .icon { font-size: 2rem; margin-bottom: 8px; }
    .role-card .label { font-weight: 600; color: var(--slate-800); font-size: 1rem; }
    .role-card .desc { font-size: 0.875rem; color: var(--slate-600); margin-top: 4px; }

    /* ==================== PROGRESS INDICATOR ==================== */
    .progress-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-bottom: 24px;
    }

    .progress-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--slate-300);
      transition: all 0.3s var(--ease-out);
    }

    .progress-dot.active {
      background: var(--cr-teal);
    }

    .progress-dot.completed {
      background: var(--cr-teal);
    }

    /* Transition screen header — static, no animation (DEC-517) */
    .transition-header {
    opacity: 1;
  }
    /* ==================== PREFERENCE CARDS ==================== */
    .preference-options {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 24px;
    }

    .preference-card {
      padding: 20px 24px;
      background: var(--white);
      border: 2px solid var(--slate-200);
      border-radius: 16px;
      cursor: pointer;
      transition: all 0.2s var(--ease-out);
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .preference-card:hover {
      border-color: var(--slate-300);
      background: var(--slate-50);
    }

    .preference-card.selected {
      border-color: var(--cr-teal);
      background: var(--cr-teal-muted);
    }

    .preference-card .card-icon {
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    .preference-card .card-content {
      flex: 1;
    }

    .preference-card .card-title {
      font-weight: 600;
      color: var(--slate-800);
      font-size: 1rem;
      margin-bottom: 2px;
    }

    .preference-card .card-desc {
      font-size: 0.875rem;
      color: var(--slate-600);
    }

    .preference-card .card-check {
      width: 24px;
      height: 24px;
      border: 2px solid var(--slate-300);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.2s var(--ease-out);
    }

    .preference-card.selected .card-check {
      background: var(--cr-teal);
      border-color: var(--cr-teal);
    }

    .preference-card .card-check svg {
      width: 14px;
      height: 14px;
      color: var(--white);
      opacity: 0;
      transform: scale(0.5);
      transition: all 0.15s var(--ease-bounce);
    }

    .preference-card.selected .card-check svg {
      opacity: 1;
      transform: scale(1);
    }

    /* Style preference cards with visual indicators */
    .preference-card[data-style="classic_clean"] .style-indicator {
      display: flex;
      gap: 4px;
    }

    .style-indicator {
      display: flex;
      gap: 4px;
      margin-top: 8px;
    }

    .style-swatch {
      width: 20px;
      height: 20px;
      border-radius: 4px;
      border: 1px solid rgba(0,0,0,0.1);
    }

/* Style cards with illustrations - grid layout */
    .style-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-bottom: 24px;
    }

    .style-card {
      background: var(--white);
      border-radius: 16px;
      overflow: hidden;
      border: 2px solid var(--slate-200);
      cursor: pointer;
      transition: all 0.2s var(--ease-out);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    }

    .style-card:hover {
      border-color: var(--slate-300);
    }

    .style-card.selected {
      border-color: var(--cr-teal);
      box-shadow: 0 4px 20px rgba(70, 158, 146, 0.15);
    }

    .style-card .card-image {
      width: 100%;
      aspect-ratio: 4 / 5;
      overflow: hidden;
      background: var(--slate-50);
    }

    .style-card .card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .style-card .card-body {
      padding: 12px 14px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      transition: background 0.2s ease;
    }

    .style-card.selected .card-body {
      background: var(--cr-teal-muted);
    }

    .style-card .card-title {
      font-weight: 600;
      color: var(--slate-800);
      font-size: 0.9375rem;
      margin-bottom: 2px;
      white-space: nowrap;
    }

    .style-card .card-desc {
      font-size: 0.8125rem;
      color: var(--slate-500);
    }

    .style-card .card-check {
      width: 22px;
      height: 22px;
      border: 2px solid var(--slate-300);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: all 0.2s var(--ease-out);
    }

    .style-card.selected .card-check {
      background: var(--cr-teal);
      border-color: var(--cr-teal);
    }

    .style-card .card-check svg {
      width: 12px;
      height: 12px;
      color: var(--white);
      opacity: 0;
      transform: scale(0.5);
      transition: all 0.15s var(--ease-bounce);
    }

    .style-card.selected .card-check svg {
      opacity: 1;
      transform: scale(1);
    }

    /* Skip link */
    .skip-link {
      display: block;
      text-align: center;
      padding: 12px;
      color: var(--slate-500);
      font-size: 0.875rem;
      text-decoration: none;
      cursor: pointer;
      transition: color 0.2s ease;
    }

    .skip-link:hover {
      color: var(--cr-teal);
    }

    /* ==================== SKIP CONFIRMATION MODAL ==================== */
    .skip-modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1100;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.2s ease, visibility 0.2s ease;
    }

    .skip-modal-overlay.visible {
      opacity: 1;
      visibility: visible;
    }

    .skip-modal {
      background: var(--white);
      border-radius: 20px;
      padding: 32px 28px;
      max-width: 340px;
      width: 100%;
      text-align: center;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
      transform: scale(0.95);
      transition: transform 0.2s var(--ease-out);
    }

    .skip-modal-overlay.visible .skip-modal {
      transform: scale(1);
    }

    .skip-modal-title {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--slate-900);
      margin-bottom: 12px;
    }

    .skip-modal-message {
      font-size: 0.9375rem;
      color: var(--slate-600);
      margin-bottom: 24px;
      line-height: 1.5;
    }

    .skip-modal-buttons {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .skip-modal-btn {
      padding: 14px 24px;
      border-radius: 12px;
      font-family: inherit;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      border: none;
      transition: all 0.2s ease;
    }

    .skip-modal-btn-primary {
      background: var(--cr-teal);
      color: var(--white);
    }

    .skip-modal-btn-primary:hover { background: var(--cr-teal-dark); }

    .skip-modal-btn-secondary {
      background: var(--slate-100);
      color: var(--slate-700);
    }

    .skip-modal-btn-secondary:hover { background: var(--slate-200); }
