/* Getting Started checklist card */
.getting-started {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border-left: 3px solid var(--border);
  animation: fade-up 0.3s var(--ease-out);
  margin-bottom: var(--space-xl);
}

.getting-started__header {
  margin-bottom: var(--space-md);
}

.getting-started__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.getting-started__title {
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  color: var(--text);
}

.getting-started__progress {
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.getting-started__bar {
  height: 4px;
  background: var(--surface-3);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.getting-started__bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: var(--radius-full);
  transition: width 0.4s var(--ease-spring);
}

.getting-started__bar-fill[data-percent="25"] { width: 25%; }
.getting-started__bar-fill[data-percent="50"] { width: 50%; }
.getting-started__bar-fill[data-percent="75"] { width: 75%; }
.getting-started__bar-fill[data-percent="100"] { width: 100%; }

/* Steps list */
.getting-started__steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.getting-started__step {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-xs);
  border-radius: var(--radius-md);
  transition: background 0.15s ease;
}

/* Done step */
.getting-started__step--done {
  opacity: 0.6;
}

.getting-started__check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--success);
  color: var(--bg);
}

.getting-started__step--done .getting-started__label {
  text-decoration: line-through;
  color: var(--text-muted);
}

/* Pending step */
.getting-started__step--pending {
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
}

.getting-started__step--pending:hover {
  background: var(--surface-2);
}

.getting-started__dot {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 2px solid var(--border-subtle);
  transition: border-color 0.15s ease;
}

.getting-started__step--pending:hover .getting-started__dot {
  border-color: var(--text-muted);
}

.getting-started__label {
  flex: 1;
  font-size: var(--text-sm);
}

.getting-started__arrow {
  font-size: var(--text-sm);
  color: var(--text-muted);
  transition: transform 0.15s ease;
}

.getting-started__step--pending:hover .getting-started__arrow {
  transform: translateX(3px);
  color: var(--text);
}
