/* Extracted from app/templates/onboarding.html (inline <style>) — frontend consolidation.
   Static CSS (no Jinja). Uses tokens from tokens.css. */

    .ob-hero { padding: 120px 0 48px; text-align: center; }
    .ob-hero h1 {
      font-size: 2.4rem; font-weight: 800;
      background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.7) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      margin-bottom: 12px;
    }
    .ob-hero p { color: rgba(255,255,255,0.55); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

    .ob-container { max-width: 860px; margin: 0 auto; padding: 0 24px 80px; }

    /* Quick-Start Steps */
    .ob-quickstart {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
      margin-bottom: 64px;
    }
    @media (max-width: 768px) { .ob-quickstart { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 480px) { .ob-quickstart { grid-template-columns: 1fr; } }
    .ob-step {
      background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
      border-radius: 16px; padding: 28px 20px; text-align: center; position: relative;
      transition: all 0.25s;
    }
    .ob-step:hover {
      border-color: rgba(99,102,241,0.3); background: rgba(99,102,241,0.04);
      transform: translateY(-2px);
    }
    .ob-step-num {
      position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
      background: linear-gradient(135deg, #6366f1, #818cf8); color: #fff;
      width: 28px; height: 28px; border-radius: 50%; display: flex;
      align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700;
    }
    .ob-step-icon { font-size: 2rem; margin: 12px 0 14px; }
    .ob-step-title { color: #fff; font-weight: 700; font-size: 0.9rem; margin-bottom: 6px; }
    .ob-step-desc { color: rgba(255,255,255,0.4); font-size: 0.8rem; line-height: 1.5; }

    /* Guide Cards */
    .ob-section-title {
      font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 20px;
      display: flex; align-items: center; gap: 10px;
    }
    .ob-section-title .ob-badge {
      font-size: 0.7rem; padding: 3px 10px; border-radius: 20px;
      background: rgba(99,102,241,0.15); color: var(--primary-light, #818cf8); font-weight: 600;
    }

    .ob-guides {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
      margin-bottom: 56px;
    }
    @media (max-width: 640px) { .ob-guides { grid-template-columns: 1fr; } }
    .ob-guide {
      background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
      border-radius: 14px; padding: 24px; transition: all 0.25s; cursor: pointer;
    }
    .ob-guide:hover {
      border-color: rgba(99,102,241,0.3); background: rgba(99,102,241,0.04);
      transform: translateY(-2px);
    }
    .ob-guide-header { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 12px; }
    .ob-guide-icon {
      width: 44px; height: 44px; border-radius: 10px; display: flex;
      align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0;
    }
    .ob-guide-meta { flex: 1; }
    .ob-guide-title { color: #fff; font-weight: 600; font-size: 0.92rem; margin-bottom: 4px; }
    .ob-guide-tags { display: flex; gap: 6px; flex-wrap: wrap; }
    .ob-guide-tag {
      font-size: 0.65rem; font-weight: 600; padding: 2px 8px; border-radius: 4px;
    }
    .tag-beginner { background: rgba(52,211,153,0.15); color: #34d399; }
    .tag-intermediate { background: rgba(251,191,36,0.15); color: #fbbf24; }
    .tag-advanced { background: rgba(248,113,113,0.15); color: #f87171; }
    .tag-time { background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.55); }
    .tag-planned { background: rgba(99,102,241,0.12); color: var(--primary-light, #818cf8); }
    .ob-guide-desc { color: rgba(255,255,255,0.4); font-size: 0.82rem; line-height: 1.5; }

    /* Guide Detail (expandable) */
    .ob-guide-detail {
      max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
      margin-top: 0;
    }
    .ob-guide.open .ob-guide-detail { max-height: 600px; margin-top: 16px; }
    .ob-guide-steps {
      list-style: none; padding: 0; margin: 0; counter-reset: gstep;
    }
    .ob-guide-steps li {
      counter-increment: gstep; padding: 10px 0 10px 36px; position: relative;
      color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.6;
      border-left: 2px solid rgba(99,102,241,0.2); margin-left: 12px;
    }
    .ob-guide-steps li::before {
      content: counter(gstep); position: absolute; left: -12px; top: 10px;
      width: 22px; height: 22px; border-radius: 50%;
      background: rgba(99,102,241,0.2); color: var(--primary-light, #818cf8); font-size: 0.7rem;
      font-weight: 700; display: flex; align-items: center; justify-content: center;
    }


    /* CTA */
    .ob-cta {
      text-align: center; padding: 48px 24px; border-top: 1px solid rgba(255,255,255,0.06);
    }
    .ob-cta h3 { color: #fff; font-size: 1.2rem; margin-bottom: 8px; }
    .ob-cta p { color: rgba(255,255,255,0.4); font-size: 0.9rem; margin-bottom: 20px; }
    .ob-cta .btn {
      display: inline-block; padding: 12px 28px; border-radius: var(--radius-pill);
      background: linear-gradient(135deg, #6366f1, #818cf8); color: #fff;
      font-weight: 600; font-size: 0.9rem; text-decoration: none; transition: all 0.2s;
      margin: 0 8px;
    }
    .ob-cta .btn:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(99,102,241,0.3); }
    .ob-cta .btn-outline {
      background: transparent; border: 1px solid rgba(255,255,255,0.15);
    }
    .ob-cta .btn-outline:hover { border-color: rgba(99,102,241,0.5); color: var(--primary-light, #818cf8); box-shadow: none; }

    /* Progress bar */
    .ob-progress-bar {
      max-width: 860px; margin: 0 auto 32px; padding: 0 24px;
    }
    .ob-progress-track {
      height: 6px; border-radius: 3px; background: rgba(255,255,255,0.06); overflow: hidden;
    }
    .ob-progress-fill {
      height: 100%; border-radius: 3px; background: linear-gradient(135deg, #6366f1, #34d399);
      transition: width 0.5s ease;
    }
    .ob-progress-label {
      display: flex; justify-content: space-between; align-items: center;
      margin-bottom: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.55);
    }
    .ob-progress-pct { color: #34d399; font-weight: 700; }

    /* Checkmark on completed steps */
    .ob-step.completed .ob-step-num {
      background: linear-gradient(135deg, #34d399, #10b981);
    }
    .ob-step.completed { border-color: rgba(52,211,153,0.2); background: rgba(52,211,153,0.04); }
    .ob-step-check {
      display: none; position: absolute; bottom: 10px; right: 10px;
      width: 22px; height: 22px; border-radius: 50%; background: rgba(52,211,153,0.15);
      color: #34d399; font-size: 0.75rem; align-items: center; justify-content: center;
      cursor: pointer; border: none; transition: all 0.2s;
    }
    .ob-step:hover .ob-step-check { display: flex; }
    .ob-step.completed .ob-step-check { display: flex; background: rgba(52,211,153,0.25); }

    /* Guide completed state */
    .ob-guide.guide-done { opacity: 0.65; }
    .ob-guide.guide-done .ob-guide-title::after {
      content: ' ✓'; color: #34d399;
    }
    .ob-guide-done-btn {
      margin-top: 12px; padding: 6px 16px; border-radius: var(--radius-pill); border: none;
      font-size: 0.78rem; font-weight: 600; cursor: pointer; transition: all 0.2s;
      background: rgba(52,211,153,0.12); color: #34d399;
    }
    .ob-guide-done-btn:hover { background: rgba(52,211,153,0.25); }


    /* Sync status badge */
    .ob-sync-status {
      font-size: 0.75rem; padding: 3px 10px; border-radius: 6px; font-weight: 600;
      display: inline-flex; align-items: center; gap: 5px;
      transition: all 0.3s;
    }
    .ob-sync-loading { background: rgba(251,191,36,0.12); color: #fbbf24; }
    .ob-sync-synced  { background: rgba(52,211,153,0.12); color: #34d399; }
    .ob-sync-error   { background: rgba(248,113,113,0.12); color: #f87171; }
    .ob-sync-offline { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.45); }
    .ob-sync-local   { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.35); }

  
